Updates from lnApp

This commit is contained in:
Deon George
2011-07-14 08:59:32 +10:00
parent 5c9750e957
commit 46c3b9a075
31 changed files with 991 additions and 434 deletions

View File

@@ -3,7 +3,7 @@
/**
* This class overrides Kohana's 404 Exception
*
* @package OSB/Modifications
* @package lnApp/Modifications
* @category Classes
* @category Helpers
* @author Deon George
@@ -25,6 +25,6 @@ class HTTP_Exception_404 extends Kohana_HTTP_Exception_404 {
'body'=>sprintf(_('The page [%s] you requested was not found?'),Request::detect_uri()),
));
Request::factory()->redirect('/welcome');
Request::factory()->redirect('welcome');
}
}