Redirect URL after deleting guestbook entry
Posted: 02 Jun 2009, 14:02
The code in controllers/phocaguestbook.php to refresh the screen after deleting an item is
On my site (localhost with wampserver) it gets translated to
(The & is replaced by &)
None of the guestbook parameters defined on the menu item are applied - presumably because the itemid is not correctly assigned.
Code: Select all
// Redirect
$link = 'index.php?option=com_phocaguestbook&view=phocaguestbook&id='.$id.'&Itemid='.$itemid.'&limitstart='.$limitstart;
$link = JRoute::_($link);
$this->setRedirect( $link, $msg );Code: Select all
index.php?option=com_phocaguestbook&view=phocaguestbook&id=1&Itemid=297&limitstart=0None of the guestbook parameters defined on the menu item are applied - presumably because the itemid is not correctly assigned.