wiki.techinc.nl/includes/UserUpdate.php

16 lines
152 B
PHP
Raw Normal View History

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