summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/odbc
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-09-24 20:22:03 +0200
committerDerek Jones <derek.jones@ellislab.com>2008-09-24 20:22:03 +0200
commitd16bab12339fe2746e1ead72ba96351c3423c27c (patch)
tree636ce46d0cb6e2e8a0d777b23ea79da3defea183 /system/database/drivers/odbc
parentc184b3beda28be9c5815fdfc1be7aa79c8b84b16 (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/odbc')
-rw-r--r--system/database/drivers/odbc/odbc_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php
index 647171696..f89000d83 100644
--- a/system/database/drivers/odbc/odbc_driver.php
+++ b/system/database/drivers/odbc/odbc_driver.php
@@ -235,7 +235,7 @@ class CI_DB_odbc_driver extends CI_DB {
function escape_str($str)
{
// ODBC doesn't require escaping
- return $str;
+ return $this->input->_remove_invisible_characters($str);
}
// --------------------------------------------------------------------