summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mysql
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2009-02-20 23:36:27 +0100
committerDerek Jones <derek.jones@ellislab.com>2009-02-20 23:36:27 +0100
commit3c11b6f5dee83ebe11dfdcec3022313c45a4a4e2 (patch)
tree5e891cdc9ea20f17363ee2b23e47937dde61cf44 /system/database/drivers/mysql
parentbdc7fb907f04469f526868058103e35460f4e52d (diff)
updated _list_tables() in db drivers to escape the db prefix for LIKE wildcards
Diffstat (limited to 'system/database/drivers/mysql')
-rw-r--r--system/database/drivers/mysql/mysql_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php
index 5b2ba62b8..2b05c3f15 100644
--- a/system/database/drivers/mysql/mysql_driver.php
+++ b/system/database/drivers/mysql/mysql_driver.php
@@ -370,7 +370,7 @@ class CI_DB_mysql_driver extends CI_DB {
if ($prefix_limit !== FALSE AND $this->dbprefix != '')
{
- $sql .= " LIKE '".$this->dbprefix."%'";
+ $sql .= " LIKE '".$this->escape_like_str($this->dbprefix)."%'";
}
return $sql;