The probjem is in file \components\com_content\helpers\route.php, ContentHelperRoute::getCategoryRoute, code:
$layout = $jinput->get('layout');
if ($layout !== '')
{
$link .= '&layout=' . $layout;
}
That happens because of using not identical comparison on $layout variable, when the actual request param is not set and JInput::get method is returning NULL by default. Suggest using just if ($layout) for checking.
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2018-05-14 11:36:17 |
Closed_By | ⇒ | mbabker |
Fixed by #20229