[Rt-commit] r11739 - rt/branches/3.8-TESTING/html/Install
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Wed Apr 16 04:51:49 EDT 2008
Author: sunnavy
Date: Wed Apr 16 04:51:49 2008
New Revision: 11739
Modified:
rt/branches/3.8-TESTING/html/Install/autohandler
Log:
forgot to call_next
Modified: rt/branches/3.8-TESTING/html/Install/autohandler
==============================================================================
--- rt/branches/3.8-TESTING/html/Install/autohandler (original)
+++ rt/branches/3.8-TESTING/html/Install/autohandler Wed Apr 16 04:51:49 2008
@@ -48,8 +48,12 @@
<%init>
-unless ( -e $File ) {
+if ( -e $File ) {
+ $m->call_next;
+}
+else {
RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . '/Install/Start.html' );
+
}
</%init>
More information about the Rt-commit
mailing list