<?php
/****************************************************************************************/
/* ACollab */
/****************************************************************************************/
/* Copyright (c) 2002-2004 Adaptive Technology Resource Centre / University of Toronto */
/* */
/* http://atutor.ca/acollab */
/* */
/* This program is free software. You may redistribute it and/or */
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation; either version 2 of the License, */
/* or (at your option) any later version. */
/* */
/* This program is distributed in the hope that it will be useful, but */
/* WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */
/* See the GNU General Public License for more details. */
/* */
/* You may access the GNU General Public License at: */
/* http://www.opensource.org/licenses/gpl-license.php */
/* */
/* You may contact the Adaptive Technology Resource Centre at */
/* Robarts Library, University of Toronto */
/* 130 St. George Street, Toronto, Ontario, Canada M5S 1A5 */
/* Further contact information is available at http://www.utoronto.ca/atrc/ */
/****************************************************************************************/
/* Programmer: */
/* Joel Kronenberg - ATRC */
/****************************************************************************************/
// $Id: upgrade.php 418 2005-03-04 16:44:30Z shozubq $
define('AC_INCLUDE_PATH', 'include/');
if (!$new_version = $_POST['new_version']) {
$new_version = $_POST['step1']['new_version'];
}
$step = intval($_POST['step']);
if ($step == 0) {
$step = 1;
}
require(AC_INCLUDE_PATH.'common.inc.php');
if (($step == 2) && isset($_POST['override']) && ($_POST['override'] == 0)) {
header('Location: index.php');
exit;
}
require(AC_INCLUDE_PATH.'uheader.php');
if ($step == 1) {
require(AC_INCLUDE_PATH.'ustep1.php');
}
if ($step == 2) {
require(AC_INCLUDE_PATH.'ustep2.php');
}
/* write the config.inc.php file with any new options */
if ($step == 3) {
require(AC_INCLUDE_PATH.'step3.php');
}
if ($step == 4) {
require(AC_INCLUDE_PATH.'ustep4.php');
}
if ($step == 5) {
require(AC_INCLUDE_PATH.'step5.php');
}
require(AC_INCLUDE_PATH.'footer.php');
?>