wiki.techinc.nl/includes/UserUpdate.php

25 lines
201 B
PHP

<?php
/**
* See deferred.doc
*
*/
/**
*
*/
class UserUpdate {
/**
*
*/
function UserUpdate() { }
/**
*
*/
function doUpdate() {
global $wgUser;
$wgUser->saveSettings();
}
}
?>