diff options
author | Gwenael Gallon <gwenael.gallon@mac.com> | 2015-02-07 19:17:39 +0100 |
---|---|---|
committer | Gwenael Gallon <gwenael.gallon@mac.com> | 2015-02-07 19:17:39 +0100 |
commit | 3053ded760a9657bdc7b935beb61d2f632859928 (patch) | |
tree | c2f6668bb33d151affa3b663c29c3c227ba215b4 /system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php | |
parent | 96901ff3849c19351c7382689e6a970629586aae (diff) |
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.php | 2 |
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 51c70b630..ab471d6fd 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 !== '') { - return $sql." AND table_name LIKE '".$this->escape_like_str($this->dbprefix)."%' " + $sql ." AND table_name LIKE '".$this->escape_like_str($this->dbprefix)."%' " .sprintf($this->_like_escape_str, $this->_like_escape_chr); } |