diff options
Diffstat (limited to 'upgrade_final.php')
| -rwxr-xr-x[-rw-r--r--] | upgrade_final.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/upgrade_final.php b/upgrade_final.php index 6da3dff..03cb53c 100644..100755 --- a/upgrade_final.php +++ b/upgrade_final.php @@ -4,6 +4,7 @@ * @package install * @subpackage upgrade */ +namespace Bitweaver; // 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. @@ -14,13 +15,12 @@ $app = '_done'; $gBitSmarty->assign( 'next_step', $step ); if( isset( $_REQUEST['enter_bitweaver'] ) ) { - $_SESSION = NULL; - bit_redirect( BIT_ROOT_URL ); + $_SESSION = null; + KernelTools::bit_redirect( BIT_ROOT_URL ); } elseif( isset( $_REQUEST['continue_install'] ) ) { - bit_redirect( INSTALL_PKG_URL.'install.php?step=5' ); + KernelTools::bit_redirect( INSTALL_PKG_URL.'install.php?step=5' ); } elseif( isset( $_REQUEST['resolve_conflicts'] ) ) { - bit_redirect( INSTALL_PKG_URL.'install.php?step=6' ); + KernelTools::bit_redirect( INSTALL_PKG_URL.'install.php?step=6' ); } else { $gBitSmarty->assign( 'next_step',$step ); } -?> |
