From e9fe447f055f89d64cc095414e755a7f1106052b Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 26 Sep 2009 23:51:33 +0000 Subject: [PATCH] Fix oversight in r56963: remove $creator --- includes/User.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/includes/User.php b/includes/User.php index fb9514cf46..48fe910fc5 100644 --- a/includes/User.php +++ b/includes/User.php @@ -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; } -- 2.20.1