From 1b85b75563d46e70fb355c4028b0ffc1701828c6 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 21 Jun 2018 20:42:58 +0000 Subject: [PATCH] Currently removed, needs more testing --- include/dba.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/dba.php b/include/dba.php index 847d1f0b5f..6e399e5de4 100644 --- a/include/dba.php +++ b/include/dba.php @@ -76,8 +76,9 @@ class dba { } try { self::$db = @new PDO($connect, $user, $pass); - self::$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); - self::$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false); + // Needs more testing + //self::$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); + //self::$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false); self::$connected = true; } catch (PDOException $e) { }