]> git.joonet.de Git - adminer.git/commitdiff
Add missing namespace to plugin
authorJakub Vrana <jakub@vrana.cz>
Sat, 8 Mar 2025 16:32:52 +0000 (17:32 +0100)
committerJakub Vrana <jakub@vrana.cz>
Sat, 8 Mar 2025 16:32:52 +0000 (17:32 +0100)
plugins/master-slave.php

index 0f52fbb6ad2f34a0e7ae1b327d0b3178a4dc38af..65309038551af8f20f96d800a58783d3466eb025 100644 (file)
@@ -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"));
                }
        }