From 3eec3d60291c7ed83e9e201ace9ed56cbe6dd295 Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 11 Feb 2019 17:18:30 -0800 Subject: [PATCH] Fix for BC constants. --- e107_handlers/e_db_pdo_class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e107_handlers/e_db_pdo_class.php b/e107_handlers/e_db_pdo_class.php index fc78a00da..3e901610d 100644 --- a/e107_handlers/e_db_pdo_class.php +++ b/e107_handlers/e_db_pdo_class.php @@ -6,9 +6,9 @@ */ // Legacy Fix. -define('MYSQL_ASSOC', 'assoc'); -define('MYSQL_NUM', 'num'); -define('MYSQL_BOTH', 'both'); +define('MYSQL_ASSOC', 1); +define('MYSQL_NUM', 2); +define('MYSQL_BOTH', 3); /**