wiki.techinc.nl/maintenance/userOptions.php
Antoine Musso 2901315906 Generalize and rename cleanupSkin.php so it can changes any option.
FIXME: does not validate the new value
2007-01-24 22:13:12 +00:00

21 lines
541 B
PHP

<?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)
*
* @author Ashar Voultoiz <hashar@altern.org>
*/
// 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";
?>