summaryrefslogtreecommitdiff
path: root/upgrade_final.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2007-09-17 11:15:01 +0000
committerMax Kremmel <xing@synapse.plus.com>2007-09-17 11:15:01 +0000
commit9a3cc010cc97786d2eb78034e0c6ca043dc18557 (patch)
treeae986a3e328aad593fd66cceba1aa25836cab7bf /upgrade_final.php
parenta97d82c083e27faf184add6c40d3c57b18835a55 (diff)
downloadinstall-9a3cc010cc97786d2eb78034e0c6ca043dc18557.tar.gz
install-9a3cc010cc97786d2eb78034e0c6ca043dc18557.tar.bz2
install-9a3cc010cc97786d2eb78034e0c6ca043dc18557.zip
add more options to final upgrade page
Diffstat (limited to 'upgrade_final.php')
-rw-r--r--upgrade_final.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/upgrade_final.php b/upgrade_final.php
index 2a0d9ca..e47c7c0 100644
--- a/upgrade_final.php
+++ b/upgrade_final.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_install/upgrade_final.php,v 1.3 2005/08/01 18:40:30 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/upgrade_final.php,v 1.4 2007/09/17 11:15:00 squareing Exp $
* @package install
* @subpackage upgrade
*/
@@ -11,15 +11,15 @@
// this is set to tell the progress meter to include this page --> 100% completed
$app = '_done';
-$gBitSmarty->assign( 'next_step',$step );
+$gBitSmarty->assign( 'next_step', $step );
if( isset( $_REQUEST['enter_bitweaver'] ) ) {
$_SESSION = NULL;
- header( 'Location: '.BIT_ROOT_URL );
- die;
+ bit_redirect( BIT_ROOT_URL );
} elseif( isset( $_REQUEST['continue_install'] ) ) {
- header( 'Location: '.INSTALL_PKG_URL.'install.php?step=5' );
- die;
+ bit_redirect( INSTALL_PKG_URL.'install.php?step=5' );
+} elseif( isset( $_REQUEST['resolve_conflicts'] ) ) {
+ bit_redirect( INSTALL_PKG_URL.'install.php?step=6' );
} else {
$gBitSmarty->assign( 'next_step',$step );
}