diff options
author | Derek Jones <derek.jones@ellislab.com> | 2009-02-20 23:36:27 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2009-02-20 23:36:27 +0100 |
commit | 3c11b6f5dee83ebe11dfdcec3022313c45a4a4e2 (patch) | |
tree | 5e891cdc9ea20f17363ee2b23e47937dde61cf44 /system/database/drivers/oci8/oci8_driver.php | |
parent | bdc7fb907f04469f526868058103e35460f4e52d (diff) |
updated _list_tables() in db drivers to escape the db prefix for LIKE wildcards
Diffstat (limited to 'system/database/drivers/oci8/oci8_driver.php')
-rw-r--r-- | system/database/drivers/oci8/oci8_driver.php | 2 |
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 1fdb1bc45..4dfec2e3f 100644 --- a/system/database/drivers/oci8/oci8_driver.php +++ b/system/database/drivers/oci8/oci8_driver.php @@ -477,7 +477,7 @@ class CI_DB_oci8_driver extends CI_DB { if ($prefix_limit !== FALSE AND $this->dbprefix != '') { - $sql .= " WHERE TABLE_NAME LIKE '".$this->dbprefix."%'"; + $sql .= " WHERE TABLE_NAME LIKE '".$this->escape_like_str($this->dbprefix)."%' ".sprintf($this->_like_escape_str, $this->_like_escape_char); } return $sql; |