Fix bugs in the menu manager. Fix the links, hide the order number for sub-menus because they are meant to displayed in order by the menu title.

This commit is contained in:
Mark Crane
2012-09-06 21:42:37 +00:00
parent ba8c205e20
commit 04dfeac49a
3 changed files with 29 additions and 23 deletions

View File

@@ -283,7 +283,7 @@
}
$sql .= ") ";
$sql .= ") ";
$sql .= "order by menu_item_order, menu_item_title asc ";
$sql .= "order by menu_item_title, menu_item_order asc ";
$prep_statement_2 = $db->prepare($sql);
$prep_statement_2->execute();
$result_2 = $prep_statement_2->fetchAll(PDO::FETCH_NAMED);