diff options
author | Derek Jones <derek.jones@ellislab.com> | 2009-02-20 21:10:00 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2009-02-20 21:10:00 +0100 |
commit | 436e6e2583c574a4628984c4a95c5d3da5fcce1f (patch) | |
tree | 7decbc0609ca9b1c7c2be8186330507314b4b5c9 | |
parent | 85a7cfb75616fb5d41496bb009adbdab0b3f6165 (diff) |
$CI->_remove_invisible_characters($str);
fixed to
$CI->input->_remove_invisible_characters($str);
-rw-r--r-- | system/database/drivers/oci8/oci8_driver.php | 2 | ||||
-rw-r--r-- | user_guide/changelog.html | 1 |
2 files changed, 2 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); } // -------------------------------------------------------------------- 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</p> <li>Fixed a bug where TRUNCATE was not considered a "write" query (#6619).</li> <li>Fixed a bug where csv_from_result() was checking for a nonexistent method.</li> <li>Fixed a bug _protect_identifiers() where it was improperly removing all pipe symbols from items</li> + <li>Fixed a fatal error in the Oracle driver (#6752)</li> </ul> </li> <li>Fixed assorted user guide typos or examples (#5998, #6093, #6259, #6339, #6432, #6521).</li> |