Fix stripslashes() on forum postings
Status: Inactive
Brought to you by:
eugee
Easy quick fix, when posting on a forum, php proxy throws backslashes in front of any apostrophes. The fix is to find the line
$tmp[$key] = urlencode($value);
and replace with
$tmp[$key] = urlencode(stripslashes($value));