RTL fixes. RTL in IE6 is still a disaster.
[lhc/web/wiklou.git] / maintenance / upgrade1_5.php
1 <?php
2 /**
3 * Alternate 1.4 -> 1.5 schema upgrade.
4 * This does only the main tables + UTF-8 and is designed to allow upgrades to
5 * interleave with other updates on the replication stream so that large wikis
6 * can be upgraded without disrupting other services.
7 *
8 * Note: this script DOES NOT apply every update, nor will it probably handle
9 * much older versions, etc.
10 * Run this, FOLLOWED BY update.php, for upgrading from 1.4.5 release to 1.5.
11 *
12 * @file
13 * @ingroup Maintenance
14 */
15
16 $options = array( 'step', 'noimages' );
17
18 require_once( 'commandLine.inc' );
19 require_once( 'FiveUpgrade.inc' );
20
21 $upgrade = new FiveUpgrade();
22 $step = isset( $options['step'] ) ? $options['step'] : null;
23 $upgrade->upgrade( $step );
24
25