You can try downloading that file again from the members area and checking on line 965 to see if it is different to the default one.
--------------- Added [DATE]1244617518[/DATE] at [TIME]1244617518[/TIME] ---------------
PHP Code:
/**
* Processes miscellaneous post items at the beginning of the construction process.
*/
function prep_post_start()
{
parent::prep_post_start();
$this->post['checkbox_value'] += ($this->post['visible'] == 0 OR ($this->thread['firstpostid'] == $this->post['postid'] AND $this->thread['visible'] == 0)) ? POST_FLAG_INVISIBLE : 0;
$this->post['checkbox_value'] += ($this->post['visible'] == 2 OR ($this->thread['firstpostid'] == $this->post['postid'] AND $this->thread['visible'] == 2)) ? POST_FLAG_DELETED : 0;
$this->post['checkbox_value'] += is_array($this->post['attachments']) ? POST_FLAG_ATTACH : 0;
$this->post['checkbox_value'] += $this->post['userid'] == 0 ? POST_FLAG_GUEST : 0;
}
This what should be from line 965 - 975.