diff options
Diffstat (limited to 'apps/um/controllers/Http404.class.php')
-rw-r--r-- | apps/um/controllers/Http404.class.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/um/controllers/Http404.class.php b/apps/um/controllers/Http404.class.php new file mode 100644 index 0000000..322feaa --- /dev/null +++ b/apps/um/controllers/Http404.class.php @@ -0,0 +1,7 @@ +<?php + +class Http404 extends Controller { + public function index($routed, $remainder) { + $this->http404($routed, $remainder); + } +} |