Plugins: Use namespace for driver functions

This commit is contained in:
Jakub Vrana
2025-03-05 15:42:48 +01:00
parent 137ac2396b
commit 0bf8861dd1
6 changed files with 8 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ class AdminerDatabaseHide {
function databases($flush = true) {
$return = array();
foreach (get_databases($flush) as $db) {
foreach (Adminer\get_databases($flush) as $db) {
if (!in_array(strtolower($db), $this->disabled)) {
$return[] = $db;
}