When viewing /wiki/Article?do=history, if the forum has a forum header, it will show as the number "1" rather than the appropriate header text.
Fixed for the next build. In 
vault/special_plugins_forumdisplay.php, find and delete:
	Code:
		$vault->parser['attach_hold'] = true;
	$postbit_factory->special_parse_bbcode();
	$vault->parser['attach_hold'] = false;
	$vault->parser['attach_held'] = true;
	$postbit_obj =& $postbit_factory->fetch_postbit('post');
	$postbit_obj->post =& $post;
	$postbit_factory->bbcode_parser->unsetattach = true;
 Find:
	Code:
		$_REQUEST['do'] = 'article';
	$_REQUEST['redirect'] = '';
 Add after:
	Code:
		$vault->parser['attach_hold'] = true;
	$postbit_factory->special_parse_bbcode();
	$vault->parser['attach_hold'] = false;
	$vault->parser['attach_held'] = true;
	$postbit_obj =& $postbit_factory->fetch_postbit('post');
	$postbit_obj->post =& $post;
	$postbit_factory->bbcode_parser->unsetattach = true;