summaryrefslogtreecommitdiffstats
path: root/system/database/drivers
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2009-02-20 21:10:00 +0100
committerDerek Jones <derek.jones@ellislab.com>2009-02-20 21:10:00 +0100
commit436e6e2583c574a4628984c4a95c5d3da5fcce1f (patch)
tree7decbc0609ca9b1c7c2be8186330507314b4b5c9 /system/database/drivers
parent85a7cfb75616fb5d41496bb009adbdab0b3f6165 (diff)
$CI->_remove_invisible_characters($str);
fixed to $CI->input->_remove_invisible_characters($str);
Diffstat (limited to 'system/database/drivers')
-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 b949a962d..42dd51769 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -375,7 +375,7 @@ class CI_DB_oci8_driver extends CI_DB {
// Access the CI object
$CI =& get_instance();
- return $CI->_remove_invisible_characters($str);
+ return $CI->input->_remove_invisible_characters($str);
}
// --------------------------------------------------------------------