From 88b915fd58ebb718f6cc98330102430dafc207a4 Mon Sep 17 00:00:00 2001 From: Deon George Date: Mon, 22 Aug 2011 10:18:48 +1000 Subject: [PATCH] Disabled 404 redirect to welcome --- application/classes/http/exception/404.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/classes/http/exception/404.php b/application/classes/http/exception/404.php index a72b75d..63946c5 100644 --- a/application/classes/http/exception/404.php +++ b/application/classes/http/exception/404.php @@ -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'); } }