From 3b2ef32349f64c7213d67d9e8551e19f663894ca Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sat, 8 Mar 2025 17:32:52 +0100 Subject: [PATCH] Add missing namespace to plugin --- plugins/master-slave.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/master-slave.php b/plugins/master-slave.php index 0f52fbb6..65309038 100644 --- a/plugins/master-slave.php +++ b/plugins/master-slave.php @@ -18,7 +18,7 @@ class AdminerMasterSlave { function credentials() { if ($_POST && isset($this->masters[Adminer\SERVER])) { - return array($this->masters[Adminer\SERVER], $_GET["username"], get_session("pwds")); + return array($this->masters[Adminer\SERVER], $_GET["username"], Adminer\get_session("pwds")); } }