Evrsoft counts them for me but you can never be sure it that line count includes comments, unexpanded includes, etc. But if it helps, line 296 is the line after the "//execute hook" line:
PHP Code:
// finish prepping the post
$this->prep_post_end();
// execute hook
($hook =& vBulletinHook::fetch_hook('postbit_display_complete')) ? eval($hook) : false;
// evaluate template
$postid =& $post['postid'];
eval('$postbit = "' . fetch_template($this->templatename) . '";');
eval('$retval = "' . fetch_template('postbit_wrapper') . '";');
return $retval;