wiki.techinc.nl/includes/UserUpdate.php

16 lines
149 B
PHP
Raw Normal View History

2003-04-14 23:10:40 +00:00
<?
# See deferred.doc
class UserUpdate {
function UserUpdate() { }
function doUpdate()
{
global $wgUser;
$wgUser->saveSettings();
}
}
?>