And while I'm a it:
[mediawiki.git] / maintenance / userOptions.php
blob597c6d4518f926e6d627f2699a2dba60cb573281
1 <?php
2 /**
3 * Script to change users skins on the fly.
4 * This is for at least MediaWiki 1.10alpha (r19611) and have not been
5 * tested with previous versions. It should probably work with 1.7+.
7 * Made on an original idea by Fooey (freenode)
9 * @file
10 * @ingroup Maintenance
11 * @author Ashar Voultoiz <hashar at free dot fr>
14 // This is a command line script, load tools and parse args
15 require_once( 'userOptions.inc' );
17 // Load up our tool system, exit with usage() if options are not fine
18 $uo = new userOptions( $options, $args );
20 $uo->run();
22 print "Done.\n";