summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mysqli/mysqli_driver.php
diff options
context:
space:
mode:
authorGwenael Gallon <gwenael.gallon@mac.com>2015-02-08 00:18:28 +0100
committerGwenael Gallon <gwenael.gallon@mac.com>2015-02-08 00:18:28 +0100
commit54e648b7bc65ea36a519f0a7b4407106e4f2756d (patch)
treec2f6668bb33d151affa3b663c29c3c227ba215b4 /system/database/drivers/mysqli/mysqli_driver.php
parent843d2506e1a1eab17b871bc38b204d27047c9ff7 (diff)
Revert "Remove unnecessary return"
Diffstat (limited to 'system/database/drivers/mysqli/mysqli_driver.php')
-rw-r--r--system/database/drivers/mysqli/mysqli_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php
index 82c043427..22a8ba678 100644
--- a/system/database/drivers/mysqli/mysqli_driver.php
+++ b/system/database/drivers/mysqli/mysqli_driver.php
@@ -375,7 +375,7 @@ class CI_DB_mysqli_driver extends CI_DB {
if ($prefix_limit !== FALSE && $this->dbprefix !== '')
{
- $sql ." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
+ return $sql." LIKE '".$this->escape_like_str($this->dbprefix)."%'";
}
return $sql;