summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
diff options
context:
space:
mode:
authorGwenael Gallon <gwenael.gallon@mac.com>2015-02-08 00:18:37 +0100
committerGwenael Gallon <gwenael.gallon@mac.com>2015-02-08 00:18:37 +0100
commitb4495898cacbaa1807da6f2a2117cf450fc4926c (patch)
treef6b0a87a3c77da194c4529b7f5d8cb90cad240c3 /system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
parent54e648b7bc65ea36a519f0a7b4407106e4f2756d (diff)
Revert "Remove unnecessary return"
Diffstat (limited to 'system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php')
-rw-r--r--system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php b/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
index ab471d6fd..51c70b630 100644
--- a/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
+++ b/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
@@ -174,7 +174,7 @@ class CI_DB_pdo_odbc_driver extends CI_DB_pdo_driver {
if ($prefix_limit !== FALSE && $this->dbprefix !== '')
{
- $sql ." AND table_name LIKE '".$this->escape_like_str($this->dbprefix)."%' "
+ return $sql." AND table_name LIKE '".$this->escape_like_str($this->dbprefix)."%' "
.sprintf($this->_like_escape_str, $this->_like_escape_chr);
}