summaryrefslogtreecommitdiffstats
path: root/system/drivers/DB_sqlite.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/drivers/DB_sqlite.php')
-rw-r--r--system/drivers/DB_sqlite.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/system/drivers/DB_sqlite.php b/system/drivers/DB_sqlite.php
index 1192e6dc7..b2c31a8ba 100644
--- a/system/drivers/DB_sqlite.php
+++ b/system/drivers/DB_sqlite.php
@@ -131,10 +131,6 @@ class CI_DB_sqlite extends CI_DB {
*/
function escape_str($str)
{
- if (get_magic_quotes_gpc())
- {
- $str = stripslashes($str);
- }
return sqlite_escape_string($str);
}