diff options
| author | Christian Fowler <spider@viovio.com> | 2006-11-10 20:55:29 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2006-11-10 20:55:29 +0000 |
| commit | 6bef8939c587312b788515ce3498fafe110aad6a (patch) | |
| tree | 167fa5893e662fbb85b74b49035136477e4046d5 /upgrade.php | |
| parent | b1c6e0deb48dcd0548fb4efecf521493a82e876c (diff) | |
| download | install-6bef8939c587312b788515ce3498fafe110aad6a.tar.gz install-6bef8939c587312b788515ce3498fafe110aad6a.tar.bz2 install-6bef8939c587312b788515ce3498fafe110aad6a.zip | |
unset upgrade_r1 session var on start over
Diffstat (limited to 'upgrade.php')
| -rw-r--r-- | upgrade.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/upgrade.php b/upgrade.php index 8503777..3f350f2 100644 --- a/upgrade.php +++ b/upgrade.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_install/upgrade.php,v 1.5 2006/05/06 22:01:53 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_install/upgrade.php,v 1.6 2006/11/10 20:55:29 spiderr Exp $ * @package install * @subpackage upgrade */ @@ -20,6 +20,8 @@ $app = ''; // work out where in the installation process we are if( !isset( $_REQUEST['step'] ) ) { $_REQUEST['step'] = 0; +} elseif( $_REQUEST['step'] == '0' ) { + $_SESSION['upgrade_r1'] = NULL; } $step = $_REQUEST['step']; |
