Fix for compatibility with short_open_tag = Off
[lhc/web/wiklou.git] / includes / UserUpdate.php
1 <?php
2 # See deferred.doc
3
4 class UserUpdate {
5
6 function UserUpdate() { }
7
8 function doUpdate()
9 {
10 global $wgUser;
11 $wgUser->saveSettings();
12 }
13 }
14
15 ?>