diff options
author | Gwenael Gallon <gwenael.gallon@mac.com> | 2015-02-08 00:18:43 +0100 |
---|---|---|
committer | Gwenael Gallon <gwenael.gallon@mac.com> | 2015-02-08 00:18:43 +0100 |
commit | cf932175c43a1003ac6b41893c2761b6685e6b90 (patch) | |
tree | 222f997dbbc91c4811a675da272a958ed7bf13ea /system | |
parent | b4495898cacbaa1807da6f2a2117cf450fc4926c (diff) |
Revert "Remove unnecessary return"
This reverts commit 96901ff3849c19351c7382689e6a970629586aae.
Diffstat (limited to 'system')
-rw-r--r-- | system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php b/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php index 5d74f57a7..98ac89f3d 100644 --- a/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php +++ b/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php @@ -113,7 +113,7 @@ class CI_DB_pdo_cubrid_driver extends CI_DB_pdo_driver { if ($prefix_limit === TRUE && $this->dbprefix !== '') { - $sql ." LIKE '".$this->escape_like_str($this->dbprefix)."%'"; + return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'"; } return $sql; |