From a46001953505c79d4c9caa12d43ddfc60f0cc582 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 17 Mar 2025 07:43:10 +0100 Subject: [PATCH] Compile PostgreSQL: Address warnings (fix #916) --- compile.php | 1 + 1 file changed, 1 insertion(+) diff --git a/compile.php b/compile.php index 2afff41b..ae352432 100755 --- a/compile.php +++ b/compile.php @@ -268,6 +268,7 @@ if ($_SERVER["argv"][1]) { include __DIR__ . "/adminer/include/pdo.inc.php"; include __DIR__ . "/adminer/include/driver.inc.php"; +$connection = new stdClass; // used in support() $features = array("check", "call" => "routine", "dump", "event", "privileges", "procedure" => "routine", "processlist", "routine", "scheme", "sequence", "status", "trigger", "type", "user" => "privileges", "variables", "view"); $lang_ids = array(); // global variable simplifies usage in a callback function $file = file_get_contents(__DIR__ . "/$project/index.php");