summaryrefslogtreecommitdiff
path: root/upgrade_packages.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-01-18 20:19:15 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-01-18 20:19:15 +0000
commit9c4280a0cf6dec1e0453ee42ad6a07056ea6d406 (patch)
treea8de4c3787bd3db5358421e51069fa7a20d85c22 /upgrade_packages.php
parent13656ba4caa2fe9d8ac390e6c150228f9fd413b7 (diff)
downloadinstall-9c4280a0cf6dec1e0453ee42ad6a07056ea6d406.tar.gz
install-9c4280a0cf6dec1e0453ee42ad6a07056ea6d406.tar.bz2
install-9c4280a0cf6dec1e0453ee42ad6a07056ea6d406.zip
try and simplify install_packages page - should be possible to extend for package upgrades
Diffstat (limited to 'upgrade_packages.php')
-rw-r--r--upgrade_packages.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/upgrade_packages.php b/upgrade_packages.php
index 17e887b..1fb7335 100644
--- a/upgrade_packages.php
+++ b/upgrade_packages.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_install/upgrade_packages.php,v 1.3 2005/08/01 18:40:30 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/upgrade_packages.php,v 1.4 2006/01/18 20:19:15 squareing Exp $
* @package install
* @subpackage upgrade
*/
@@ -22,8 +22,9 @@ include_once( $config_file ); // relative, but we know we are in the installer h
$gBitInstaller->scanPackages( 'admin/upgrade_inc.php' );
$upgradePath = array (
- 'TikiWiki 1.8' => array( 'TIKIWIKI18' => 'BONNIE', 'BONNIE' => 'CLYDE' ),
- 'BONNIE' => array( 'BONNIE' => 'CLYDE' ),
+ 'TikiWiki 1.8' => array( 'TIKIWIKI18' => 'BONNIE', 'BONNIE' => 'BWR1', 'BWR1' => 'BWR2' ),
+ 'BONNIE' => array( 'BONNIE' => 'BWR1', 'BWR1' => 'BWR2' ),
+ 'BWR1' => array( 'BWR1' => 'BWR2' ),
);
$gBitSmarty->assign( 'upgradeFrom', $gUpgradeFrom );