Fix oversight in r56963: remove $creator
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 26 Sep 2009 23:51:33 +0000 (23:51 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 26 Sep 2009 23:51:33 +0000 (23:51 +0000)
includes/User.php

index fb9514c..48fe910 100644 (file)
@@ -3510,12 +3510,11 @@ class User {
                                : '';
                }
                $log = new LogPage( 'newusers' );
-               $log->addEntry( 
-                       $action, 
-                       $this->getUserPage(), 
-                       $message, 
-                       array( $this->getId() ), 
-                       $creator 
+               $log->addEntry(
+                       $action,
+                       $this->getUserPage(),
+                       $message,
+                       array( $this->getId() )
                );
                return true;
        }