summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8/oci8_driver.php
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2008-10-07 02:19:34 +0200
committerRick Ellis <rick.ellis@ellislab.com>2008-10-07 02:19:34 +0200
commit2cad6e9da8b94833503d0d2f545bcaa29d50bd5d (patch)
tree27710681a466aaa5ca9da885939c54275a521925 /system/database/drivers/oci8/oci8_driver.php
parentb4a6cf35fe8c637cec5be811f109f6f841456283 (diff)
There was a call to $this->input->_remove_invisible_characters($str); It should have been: $this->input->CI->_remove_invisible_characters($str);
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 9d9193252..98c993291 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 $this->input->_remove_invisible_characters($str);
+ return $this->input->CI->_remove_invisible_characters($str);
}
// --------------------------------------------------------------------