Skip to content

Commit

Permalink
Merge pull request #2 from jenlampton/1-menu-admin
Browse files Browse the repository at this point in the history
Issue #1: Fixed broken list menus page.
  • Loading branch information
jenlampton committed Feb 1, 2016
2 parents 0494ae8 + 064c9b6 commit e748c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion menu_admin_per_menu.module
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function _menu_admin_per_menu_menu_overview_page() {
}

$perm_menus = _menu_admin_per_menu_get_perm_menus();
$result = db_query("SELECT * FROM {menu_custom} ORDER BY title", array(), array('fetch' => PDO::FETCH_ASSOC));
$result = menu_load_all();
$header = array(t('Title'), array('data' => t('Operations'), 'colspan' => '2'));
$rows = array();
foreach ($result as $menu) {
Expand Down

0 comments on commit e748c3f

Please sign in to comment.