Hmm... I'm on vb3.5 RC1 and it's rejecting the xml file. Had to add it in manually. Everythings working fine though now.
Code:
if (THIS_SCRIPT=='pdfthread' && !PDFASHTML) {
$pdf = new html2fpdf();
$pdf->AddPage();
$pdf->WriteHTML($output);
header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=thread-".$threadid.".pdf");
$pdf->Output();
exit();
}