diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
commit | 183851b06bd6c52f3cae5375f433da720d410447 (patch) | |
tree | a477257decbf3360127f6739c2f9d0ec57a03d39 /maintenance/upgrade1_5.php |
MediaWiki 1.7.1 wiederhergestellt
Diffstat (limited to 'maintenance/upgrade1_5.php')
-rw-r--r-- | maintenance/upgrade1_5.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/maintenance/upgrade1_5.php b/maintenance/upgrade1_5.php new file mode 100644 index 00000000..a269c335 --- /dev/null +++ b/maintenance/upgrade1_5.php @@ -0,0 +1,24 @@ +<?php + +// Alternate 1.4 -> 1.5 schema upgrade +// This does only the main tables + UTF-8 +// and is designed to allow upgrades to interleave +// with other updates on the replication stream so +// that large wikis can be upgraded without disrupting +// other services. +// +// Note: this script DOES NOT apply every update, nor +// will it probably handle much older versions, etc. +// Run this, FOLLOWED BY update.php, for upgrading +// from 1.4.5 release to 1.5. + +$options = array( 'step', 'noimages' ); + +require_once( 'commandLine.inc' ); +require_once( 'FiveUpgrade.inc' ); + +$upgrade = new FiveUpgrade(); +$step = isset( $options['step'] ) ? $options['step'] : null; +$upgrade->upgrade( $step ); + +?> |