diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-24 14:45:47 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-24 14:45:47 +0000 |
| commit | 26d26148d93805c511d8015e782d8b077d8cc831 (patch) | |
| tree | 1833cfbd7dfd8c139d78b7438443678692c32086 /phpBB/db/mssql.php | |
| parent | 2fccbeb7713961dcebfb224006948d4bae68904a (diff) | |
| download | forums-26d26148d93805c511d8015e782d8b077d8cc831.tar forums-26d26148d93805c511d8015e782d8b077d8cc831.tar.gz forums-26d26148d93805c511d8015e782d8b077d8cc831.tar.bz2 forums-26d26148d93805c511d8015e782d8b077d8cc831.tar.xz forums-26d26148d93805c511d8015e782d8b077d8cc831.zip | |
Removed 'global' str_replace for \'
git-svn-id: file:///svn/phpbb/trunk@1697 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/mssql.php')
| -rw-r--r-- | phpBB/db/mssql.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/db/mssql.php b/phpBB/db/mssql.php index e16e8ce710..52ae9c8a84 100644 --- a/phpBB/db/mssql.php +++ b/phpBB/db/mssql.php @@ -150,7 +150,7 @@ class sql_db } else if( eregi("^INSERT ", $query) ) { - if( mssql_query(str_replace("\'", "''", $query), $this->db_connect_id) ) + if( mssql_query($query, $this->db_connect_id) ) { $this->result = time() + microtime(); @@ -167,7 +167,7 @@ class sql_db } else { - if( mssql_query(str_replace("\'", "''", $query), $this->db_connect_id) ) + if( mssql_query($query, $this->db_connect_id) ) { $this->result = time() + microtime(); |
