Did anyone resolve Strip Magic Quotes?
-
As advised, I went to the forum and added
if ( get_magic_quotes_gpc() ) {
$_POST = array_map( ‘stripslashes_deep’, $_POST );
$_GET = array_map( ‘stripslashes_deep’, $_GET );
$_COOKIE = array_map( ‘stripslashes_deep’, $_COOKIE );
$_REQUEST = array_map( ‘stripslashes_deep’, $_REQUEST );
}Nothing changed and the alert is still on my customer’s page and she thinks I don’t know what. I am doing. Guess what? In this case, she is right. How did others resolve this, and more interestingly why has it not been corrected in a later version. I would be willing to donate!
At the very least, that link should hopefully go to a page that has the real solution.
- The topic ‘Did anyone resolve Strip Magic Quotes?’ is closed to new replies.