Forgot a piece.I said I need to turn off view rendering for the forums. So in the Initializer preDispatch I have
function preDispatch(Zend_Controller_Request_Abstract $request) {
if($request->getModuleName() == 'forums'){
$this->_front->setParam('noViewRenderer',
$request->getControllerName() != 'error');
}
}