From 436e6e2583c574a4628984c4a95c5d3da5fcce1f Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Fri, 20 Feb 2009 20:10:00 +0000 Subject: $CI->_remove_invisible_characters($str); fixed to $CI->input->_remove_invisible_characters($str); --- system/database/drivers/oci8/oci8_driver.php | 2 +- user_guide/changelog.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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); } // -------------------------------------------------------------------- diff --git a/user_guide/changelog.html b/user_guide/changelog.html index f48bb0be5..06375d6f4 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -136,6 +136,7 @@ SVN Revision: 1640

  • Fixed a bug where TRUNCATE was not considered a "write" query (#6619).
  • Fixed a bug where csv_from_result() was checking for a nonexistent method.
  • Fixed a bug _protect_identifiers() where it was improperly removing all pipe symbols from items
  • +
  • Fixed a fatal error in the Oracle driver (#6752)
  • Fixed assorted user guide typos or examples (#5998, #6093, #6259, #6339, #6432, #6521).
  • -- cgit v1.2.3-24-g4f1b