Replace $db with $database

This commit is contained in:
FusionPBX
2024-08-05 19:52:45 -06:00
committed by GitHub
parent 22ba339505
commit 1252649a0c

View File

@@ -210,7 +210,7 @@
//check for additional sub menus
if (!empty($menu_item_uuid)) {
build_db_child_menu_list($db, $menu_item_level, $menu_item_uuid);
build_db_child_menu_list($database, $menu_item_level, $menu_item_uuid);
}
}
unset($result2, $row2);
@@ -393,7 +393,7 @@
//check for sub menus
$menu_item_level = 0;
if (is_uuid($menu_item_uuid)) {
build_db_child_menu_list($db, $menu_item_level, $menu_item_uuid);
build_db_child_menu_list($database, $menu_item_level, $menu_item_uuid);
}
}