October 18th, 2005, 07:17 PM
|
#2 (permalink)
|
| Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 68,056
|
In adm-misc.php find this 3 times
$body = (ini_get("magic_quotes_gpc")) ? addslashes(stripslashes(trim($body))) : addslashes(trim($body));
replace with this
$body = (ini_get("magic_quotes_gpc")) ? stripslashes($body) : $body;
|
| |