diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-09-24 20:22:03 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-09-24 20:22:03 +0200 |
commit | d16bab12339fe2746e1ead72ba96351c3423c27c (patch) | |
tree | 636ce46d0cb6e2e8a0d777b23ea79da3defea183 /system/database/drivers/oci8/oci8_driver.php | |
parent | c184b3beda28be9c5815fdfc1be7aa79c8b84b16 (diff) |
added removal of non-printing characters to escape_str() of drivers that do not have native PHP escaping mechanisms
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 d6bc512be..765c3f6c9 100644 --- a/system/database/drivers/oci8/oci8_driver.php +++ b/system/database/drivers/oci8/oci8_driver.php @@ -366,7 +366,7 @@ class CI_DB_oci8_driver extends CI_DB { */
function escape_str($str)
{
- return $str;
+ return $this->input->_remove_invisible_characters($str);
}
// --------------------------------------------------------------------
|