1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 12:20:44 +02:00

Fix for missing menus on some admin pages.

This commit is contained in:
Cameron
2021-01-29 11:03:04 -08:00
parent c036b84ebd
commit 0610dad19a
2 changed files with 7 additions and 2 deletions

View File

@@ -1683,7 +1683,7 @@ class e_admin_dispatcher
$toggle = "<span class='e-toggle-sidebar'><!-- --></span>";
$var['_extras_'] = array('icon'=> $icon);
$var['_extras_'] = array('icon'=> $icon, 'return'=>true);
// $var['_icon_'] = $icon;

View File

@@ -1418,7 +1418,12 @@ i.e-cat_users-32{ background-position: -555px 0; width: 32px; height: 32px; }
$ret = $ns->tablerender($title, $text, 'default', true);
$ns->setUniqueId(null);
return $ret;
if(!empty($extraParms['return']))
{
return $ret;
}
echo $ret;
}