From cecf9003917e2574fbb7c35ce927778b663089a1 Mon Sep 17 00:00:00 2001 From: Matthew Bucci Date: Mon, 30 Oct 2023 09:27:19 -0700 Subject: [PATCH] correct DB_DRIVER define --- pg4wp/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg4wp/db.php b/pg4wp/db.php index fef6b0a..67def81 100644 --- a/pg4wp/db.php +++ b/pg4wp/db.php @@ -14,7 +14,7 @@ if(!defined('PG4WP_ROOT')) { // You can choose the driver to load here if (!defined('DB_DRIVER')) { - define('DB_DRIVER', pgsql); + define('DB_DRIVER', 'pgsql'); } // Set this to 'true' and check that `pg4wp` is writable if you want debug logs to be written