summaryrefslogtreecommitdiffstats
path: root/system/database
diff options
context:
space:
mode:
authorGwenael Gallon <gwenael.gallon@mac.com>2015-02-08 00:18:43 +0100
committerGwenael Gallon <gwenael.gallon@mac.com>2015-02-08 00:18:43 +0100
commitcf932175c43a1003ac6b41893c2761b6685e6b90 (patch)
tree222f997dbbc91c4811a675da272a958ed7bf13ea /system/database
parentb4495898cacbaa1807da6f2a2117cf450fc4926c (diff)
Revert "Remove unnecessary return"
Diffstat (limited to 'system/database')
-rw-r--r--system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php2
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;