There's lines 41-51
$postdate=vbdate($dateformat,$postinfo[dateline]);
$posttime=vbdate($timeformat,$postinfo[dateline]);
$pagetext=$postinfo[pagetext];
$pagetext = preg_replace("/(\[quote])(.*)(\[\/quote])/siU", "", $pagetext);
eval("\$message = \"".gettemplate("quotereply",1,0)."\";");
}
}
$threadid=verifyid("thread",$threadid);
$threadinfo=getthreadinfo($threadid);
This is line 45, the one that I think is causing the parse error:
PHP Code:
eval("\$message = \"".gettemplate("quotereply",1,0)."\";");
Hope someone can see something wrong.