Ticket #20223: 20223.patch
| File 20223.patch, 561 bytes (added by , 14 years ago) |
|---|
-
wp-includes/wp-db.php
788 788 if ( $this->dbh && $this->real_escape ) 789 789 return mysql_real_escape_string( $string, $this->dbh ); 790 790 else 791 return addslashes( $string ); 791 return strtr( $string, array( 792 "\x00" => '\x00', 793 "\n" => '\n', 794 "\r" => '\r', 795 '\\' => '\\\\', 796 "'" => "\'", 797 '"' => '\"', 798 "\x1a" => '\x1a' 799 ) ); 792 800 } 793 801 794 802 /**
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)