2008-03-01 05:40:42 UTC
I don't know PHP so I'm not sure if this is the correct solution, but the following worked for me:
Change line 44 from:
$data = unserialize(stripslashes($_GET["content"]));
To:
$data = unserialize($_GET["content"]);
I'm assuming this is the correct fix since 'addslashes' is not used during the serialize phase.