summaryrefslogtreecommitdiff
path: root/upgrade_final.php
diff options
context:
space:
mode:
authorbitweaver.org <bitweaver@users.sourceforge.net>2005-06-19 04:51:19 +0000
committerbitweaver.org <bitweaver@users.sourceforge.net>2005-06-19 04:51:19 +0000
commitf2c6619fcf9489f34354efe9a9eab3dd73db773e (patch)
tree8640b8d4ca95a864be32d785a4b31d64ef46032f /upgrade_final.php
downloadinstall-f2c6619fcf9489f34354efe9a9eab3dd73db773e.tar.gz
install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.tar.bz2
install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.zip
IMPORT TikiPro CLYDE FINAL
Diffstat (limited to 'upgrade_final.php')
-rw-r--r--upgrade_final.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/upgrade_final.php b/upgrade_final.php
new file mode 100644
index 0000000..4f90921
--- /dev/null
+++ b/upgrade_final.php
@@ -0,0 +1,23 @@
+<?php
+
+// $Header: /cvsroot/bitweaver/_bit_install/upgrade_final.php,v 1.1 2005/06/19 04:51:19 bitweaver Exp $
+
+// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
+// All Rights Reserved. See copyright.txt for details and a complete list of authors.
+// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
+
+// this is set to tell the progress meter to include this page --> 100% completed
+$app = '_done';
+$smarty->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=5' );
+ die;
+} else {
+ $smarty->assign( 'next_step',$step );
+}
+?>