summaryrefslogtreecommitdiff
path: root/maintenance/userOptions.php
blob: 597c6d4518f926e6d627f2699a2dba60cb573281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
 * Script to change users skins on the fly.
 * This is for at least MediaWiki 1.10alpha (r19611) and have not been
 * tested with previous versions. It should probably work with 1.7+.
 *
 * Made on an original idea by Fooey (freenode)
 *
 * @file
 * @ingroup Maintenance
 * @author Ashar Voultoiz <hashar at free dot fr>
 */

// This is a command line script, load tools and parse args
require_once( 'userOptions.inc' );

// Load up our tool system, exit with usage() if options are not fine
$uo = new userOptions( $options, $args );

$uo->run();

print "Done.\n";