http://cdl.joomlademos.co.uk
login with : mcr_brighton / mcr_brighton
http://cdl.joomlademos.co.uk/index.php?option=com_content&view=featured&Itemid=1207
http://cdl.joomlademos.co.uk/index.php?option=com_content&view=featured&Itemid=1207
Joomla 3.6.3
Database Version 5.6.30-log
Database Collation utf8_unicode_ci
Database Connection Collation utf8mb4_general_ci
PHP Version 5.6.24 
I am using a plugin that redirects users to a specific page based on user/user groups.
The plugin is using this bit to redirect :  if($itemid) $app->redirect(JRoute::_($menuitem->link.'&Itemid='.$itemid));
The problem is that for some reason the '&' is replaced with '&' in the output...
 
                 
                Fixed it. Thanks ;)
 
                Cheers, closing it then, not a bug
| Status | New | ⇒ | Closed | 
| Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-08-08 14:14:54 | 
| Closed_By | ⇒ | rdeutz | 
| Labels | Added: 
? | ||
try to change
JRoute::($menuitem->link.'&Itemid='.$itemid)
to
JRoute::($menuitem->link.'&Itemid='.$itemid, false)