1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-10 00:28:34 +02:00

Add missing namespace to plugin

This commit is contained in:
Jakub Vrana
2025-03-08 17:32:52 +01:00
parent 47b64f4752
commit 3b2ef32349

View File

@@ -18,7 +18,7 @@ class AdminerMasterSlave {
function credentials() { function credentials() {
if ($_POST && isset($this->masters[Adminer\SERVER])) { 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"));
} }
} }