Newer
Older
mailpiler / webui / controller / common / not_found.php
@SJ SJ on 8 Feb 2012 310 bytes added the webui to the tarball
<?php


class ControllerCommonNotfound extends Controller {

   public function index(){

      $this->id = "content";
      $this->template = "common/not_found.tpl";
      $this->layout = "common/layout";

      $this->document->title = $this->data['title_not_found'];


      $this->render();

   }


}


?>