summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/pdo/subdrivers
diff options
context:
space:
mode:
authorGwenael Gallon <gwenael.gallon@mac.com>2015-02-07 19:12:56 +0100
committerGwenael Gallon <gwenael.gallon@mac.com>2015-02-07 19:12:56 +0100
commit96901ff3849c19351c7382689e6a970629586aae (patch)
treef6b0a87a3c77da194c4529b7f5d8cb90cad240c3 /system/database/drivers/pdo/subdrivers
parent3a486f19dfe79378d21c6b45579923cc86be0cb5 (diff)
Remove unnecessary return
Diffstat (limited to 'system/database/drivers/pdo/subdrivers')
-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 98ac89f3d..5d74f57a7 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 !== '')
{
- return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
+ $sql ." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
}
return $sql;