diff options
author | alecpl <alec@alec.pl> | 2009-05-31 08:37:01 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-05-31 08:37:01 +0000 |
commit | b45aedd22c9283f6805efb686b9520eea78d83f9 (patch) | |
tree | 81314a1c77c3fc3903deecc01f92f0060621391e /installer/index.php | |
parent | 6138a55f805b17a375c52f1dbc6b13712200502e (diff) |
- check environement on upgrade (per discussion in #1485867)
Diffstat (limited to 'installer/index.php')
-rw-r--r-- | installer/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/index.php b/installer/index.php index 549b6f007..9f4c0a35e 100644 --- a/installer/index.php +++ b/installer/index.php @@ -47,9 +47,9 @@ if ($RCI->configured && ($RCI->getprop('enable_installer') || $_SESSION['allowin exit; } -// go to 'test' step if we have a local configuration +// go to 'check env' step if we have a local configuration if ($RCI->configured && empty($_REQUEST['_step'])) { - header("Location: ./?_step=3"); + header("Location: ./?_step=1"); exit; } |