Merge pull request #1528 from moteus/no_menu_warning
Fix. warning about using NULL as first argument in `foreach`.
This commit is contained in:
@@ -390,7 +390,7 @@
|
|||||||
$db = $this->db;
|
$db = $this->db;
|
||||||
|
|
||||||
//database ojbect does not exist return immediately
|
//database ojbect does not exist return immediately
|
||||||
if (!$db) { return; }
|
if (!$db) { return Array(); }
|
||||||
|
|
||||||
//if there are no groups then set the public group
|
//if there are no groups then set the public group
|
||||||
if (!isset($_SESSION['groups'])) {
|
if (!isset($_SESSION['groups'])) {
|
||||||
@@ -435,6 +435,7 @@
|
|||||||
|
|
||||||
//save the menu into an array
|
//save the menu into an array
|
||||||
$x = 0;
|
$x = 0;
|
||||||
|
$a = Array();
|
||||||
foreach($result as $row) {
|
foreach($result as $row) {
|
||||||
//add the row to the array
|
//add the row to the array
|
||||||
$a[$x] = $row;
|
$a[$x] = $row;
|
||||||
|
|||||||
Reference in New Issue
Block a user