From e3a1d1b338ad08f418ce11c063f8c0c6210a6cd3 Mon Sep 17 00:00:00 2001 From: nathangray Date: Tue, 23 Mar 2021 16:23:23 -0600 Subject: [PATCH] Fix static var accessed as a constant --- api/src/Db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Db.php b/api/src/Db.php index 1856157711..523fd40b42 100644 --- a/api/src/Db.php +++ b/api/src/Db.php @@ -571,7 +571,7 @@ class Db } else { - $this->Link_ID = self::ADOdb; + $this->Link_ID = self::$ADOdb; } } if (!$this->Link_ID->isConnected() && !$this->Link_ID->Connect())