Hello,
I have the same issue with each posted classified with links. The links simply get replaced with "%5C"
Any luck with a solution for this?
Regards
Found a solution:
Add the following code to the bottom of your /oc-includes/osclass/core/Params.php and you'll be good to go.
if (get_magic_quotes_gpc()) {
function stripslashes_deep($value)
{
$value = is_array($value) ?
array_map('stripslashes_deep', $value) :
stripslashes($value);
return $value;
}
$_POST = array_map('stripslashes_deep', $_POST);
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
$_REQUEST = array_map('stripslashes_deep', $_REQUEST);
}