Blame view

modules/admin/controller/error404.php 249 Bytes
8d65d0ce   andryeyev   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?php
  
  Class Admin_error404Controller Extends baseController {
  public function preDispatch(){
    $auth = new Auth();
    if($auth->is_login_session() == false)Redirect('/admin/auth/');
  }
  public function index() 
  {
    // $this->error[] = "404";
  }
  
  
  }
  ?>