It falls back to funky escaping that causes problems and is not reversible, so temporarily disabling.
git-svn-id: https://develop.svn.wordpress.org/trunk@2737 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
2c7be48b87
commit
7af1145a9d
@ -77,6 +77,7 @@ class wpdb {
|
|||||||
// Format a string correctly for safe insert under all PHP conditions
|
// Format a string correctly for safe insert under all PHP conditions
|
||||||
|
|
||||||
function escape($string) {
|
function escape($string) {
|
||||||
|
return addslashes( $string ); // Disable rest for now, causing problems
|
||||||
if( !$this->dbh || version_compare( phpversion(), '4.3.0' ) == '-1' )
|
if( !$this->dbh || version_compare( phpversion(), '4.3.0' ) == '-1' )
|
||||||
return mysql_escape_string( $string );
|
return mysql_escape_string( $string );
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user