forked from BitweaverCMS/install
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmigrate_final.php
More file actions
26 lines (23 loc) · 784 Bytes
/
migrate_final.php
File metadata and controls
26 lines (23 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* @version $Header$
* @package install
* @subpackage upgrade
*/
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
// this is set to tell the progress meter to include this page --> 100% completed
$app = '_done';
$gBitSmarty->assign( 'next_step',$step );
if( isset( $_REQUEST['enter_bitweaver'] ) ) {
$_SESSION = NULL;
header( 'Location: '.BIT_ROOT_URL );
die;
} elseif( isset( $_REQUEST['continue_install'] ) ) {
header( 'Location: '.INSTALL_PKG_URL.'install.php?step=4' );
die;
} else {
$gBitSmarty->assign( 'next_step',$step );
}
?>