Fix this problem:

Fatal error: Call to a member function execute() on a non-object in /var/www/fusionpbx/includes/classes/menu.php on line 372 
Alias was used for the tables but missed on the order by.
This commit is contained in:
Mark Crane 2012-11-23 21:37:19 +00:00
parent 1b70d1bb52
commit 1b36712866
1 changed files with 1 additions and 1 deletions

View File

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