コード例 #1
0
ファイル: Dispatcher.php プロジェクト: CamTosh/Mediastorrent
 function error($error)
 {
     header("HTTP/1.0 404 Not Found");
     $controller = new Controller($this->request, $this->debug);
     $controller->set("message", $error);
     $controller->render("/errors/404");
     die;
 }