summaryrefslogtreecommitdiffstats
path: root/system/drivers/DB_mssql.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/drivers/DB_mssql.php')
-rw-r--r--system/drivers/DB_mssql.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/drivers/DB_mssql.php b/system/drivers/DB_mssql.php
index 48d1929e3..f6e672b94 100644
--- a/system/drivers/DB_mssql.php
+++ b/system/drivers/DB_mssql.php
@@ -109,8 +109,8 @@ class CI_DB_mssql extends CI_DB {
*/
function escape_str($str)
{
- // MS SQL doesn't require escaping
- return $str;
+ // Escape single quotes
+ return str_replace("'", "''", $str);
}
// --------------------------------------------------------------------