From 1716c70d5a36285e8f531feecd99ba290353658c Mon Sep 17 00:00:00 2001 From: Jehong Ahn Date: Wed, 18 Apr 2018 23:56:29 +0900 Subject: Remove the extra parentheses --- system/database/DB_driver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/database/DB_driver.php') diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index c213bc280..2f6bd7484 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -1469,7 +1469,7 @@ abstract class CI_DB_driver { return 'UPDATE '.$table.' SET '.implode(', ', $valstr) .$this->_compile_wh('qb_where') .$this->_compile_order_by() - .(($this->qb_limit !== FALSE) ? ' LIMIT '.$this->qb_limit : ''); + .($this->qb_limit !== FALSE ? ' LIMIT '.$this->qb_limit : ''); } // -------------------------------------------------------------------- -- cgit v1.2.3-24-g4f1b