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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

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);
}
}