@@ -1542,28 +1542,30 @@ function system_admin_menu_block($item) {
if(!isset($item['mlid'])){
$item+=db_query("SELECT mlid, menu_name FROM {menu_links} ml WHERE ml.router_path = :path AND module = 'system'",array(':path'=>$item['path']))->fetchAssoc();
LEFT JOIN {menu_router} m ON ml.router_path = m.path
WHERE ml.plid = :plid AND ml.menu_name = :name AND hidden = 0",array(':plid'=>$item['mlid'],':name'=>$item['menu_name']),array('fetch'=>PDO::FETCH_ASSOC));
foreach($resultas$item){
_menu_link_translate($item);
if(!$item['access']){
foreach($resultas$link){
_menu_link_translate($link);
if(!$link['access']){
continue;
}
// The link 'description' either derived from the hook_menu 'description' or
// entered by the user via menu module is saved as the title attribute.