AND pm.folderid=
is the problem, when does this error occure?
Do you have any other pm mods installed?
if(!isset($_GET['folderid'])) $_GET['folderid'] = 0;
at the beginning should deal with it. You can try replacing it with if(!isset($_GET['folderid']) || trim($_GET['folderid']) == '') $_GET['folderid'] = 0;
otherwise i don't have a clue what could cause this problem.
i've updated the archiv accordingly
|