Awful Magic Quotes Issue
-
Having a terrible time with Magic Quotes, at least I think that is what’s causing the problem.
Every part of WP has slashes before every quote (even in the Admin panel).
for example…
\”Hi all, we\’re still here
this is already added in…
function remove_wp_magic_quotes() { $_GET = stripslashes_deep($_GET); $_POST = stripslashes_deep($_POST); $_COOKIE = stripslashes_deep($_COOKIE); $_REQUEST = stripslashes_deep($_REQUEST); }
also, Magic Quotes in PHP Info is off (except at master level for GPC).
magic_quotes_gpc Off On magic_quotes_runtime Off Off magic_quotes_sybase Off Off mail.add_x_header Off Off
any thoughts as to what’s causing this and how to fix?
- The topic ‘Awful Magic Quotes Issue’ is closed to new replies.