/var/www/allseasontrans.com/www/controllers
Edit: /var/www/allseasontrans.com/www/controllers/class.error.php (469B)
_msg=$msg;
parent::__construct();
$this->view->title='Error. ';
}
public function index (){
if($this->_msg!=''){
$this->view->msg =$this->_msg;
}else{
$this->view->msg="Page not found." ;
}
$this->view->render('error/error');
}
}
?>