Last modified: 2007-07-10 10:54:21 UTC
Under PHP 4, MediaWiki 1.6, upon creating a new user the following warning is generated: Warning: Missing argument 1 for wfnewuserloghook() in /home/content/j/i/m/jimbojw/html/wiki/extensions/Newuserlog.php on line 46 This can be resolved by changing the declaration of the wfnewuserloghook method from this: function wfNewuserlogHook( $user ) To this: function wfNewuserlogHook( $user=null )
Fixed in r23948.