Special:Version now displays whether a SQLite database supports full-text search
[mediawiki.git] / maintenance / userOptions.php
blobd4098ab21e1b3e532cdbe850f1358a3412d1af88
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@altern.org>
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";