Changeset 2737

Show
Ignore:
Timestamp:
07/26/05 20:11:41 (3 years ago)
Author:
matt
Message:

It falls back to funky escaping that causes problems and is not reversible, so temporarily disabling.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/wp-db.php

    r2696 r2737  
    7878     
    7979    function escape($string) { 
     80        return addslashes( $string ); // Disable rest for now, causing problems 
    8081        if( !$this->dbh || version_compare( phpversion(), '4.3.0' ) == '-1' ) 
    8182            return mysql_escape_string( $string );