From: Siebrand Mazeland Date: Sat, 26 Sep 2009 23:51:33 +0000 (+0000) Subject: Fix oversight in r56963: remove $creator X-Git-Tag: 1.31.0-rc.0~39511 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=e9fe447f055f89d64cc095414e755a7f1106052b;p=lhc%2Fweb%2Fwiklou.git Fix oversight in r56963: remove $creator --- 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; }