summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8/oci8_driver.php
diff options
context:
space:
mode:
authorGwenael Gallon <gwenael.gallon@mac.com>2015-02-07 20:02:40 +0100
committerGwenael Gallon <gwenael.gallon@mac.com>2015-02-07 20:02:40 +0100
commit843d2506e1a1eab17b871bc38b204d27047c9ff7 (patch)
tree56c8b38e68b49c76c5a07f02f896032c4c98219e /system/database/drivers/oci8/oci8_driver.php
parent3053ded760a9657bdc7b935beb61d2f632859928 (diff)
Remove unnecessary return
Diffstat (limited to 'system/database/drivers/oci8/oci8_driver.php')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index b87b41112..ccd641950 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -494,7 +494,7 @@ class CI_DB_oci8_driver extends CI_DB {
if ($prefix_limit !== FALSE && $this->dbprefix !== '')
{
- return $sql.' WHERE "TABLE_NAME" LIKE \''.$this->escape_like_str($this->dbprefix)."%' "
+ $sql .' WHERE "TABLE_NAME" LIKE \''.$this->escape_like_str($this->dbprefix)."%' "
.sprintf($this->_like_escape_str, $this->_like_escape_chr);
}