From 69e8bbfd1be4f25836c887a4026b55eb43fa67c5 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Wed, 25 May 2022 15:10:35 +0000 Subject: [PATCH] do not disable transaction in pdo_driver.php --- codepot/src/system/database/drivers/pdo/pdo_driver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codepot/src/system/database/drivers/pdo/pdo_driver.php b/codepot/src/system/database/drivers/pdo/pdo_driver.php index 899654df..75147593 100644 --- a/codepot/src/system/database/drivers/pdo/pdo_driver.php +++ b/codepot/src/system/database/drivers/pdo/pdo_driver.php @@ -153,7 +153,7 @@ class CI_DB_pdo_driver extends CI_DB { empty($this->database) OR $this->hostname .= ';dbname='.$this->database; - $this->trans_enabled = FALSE; + //$this->trans_enabled = FALSE; $this->_random_keyword = ' RND('.time().')'; // database specific random keyword }