From eac9273e08d8505dd71e3c1396fe290c3c828eaa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Wed, 20 May 2009 05:45:18 +0000 Subject: [PATCH] Added wfDeprecated too --- includes/AuthPlugin.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/AuthPlugin.php b/includes/AuthPlugin.php index d91de3baab..dd7954895f 100644 --- a/includes/AuthPlugin.php +++ b/includes/AuthPlugin.php @@ -139,6 +139,7 @@ class AuthPlugin { * @return bool */ public function allowRealNameChange() { + wfDeprecated( __METHOD__ ); return $this->allowPropChange( 'realname' ); } @@ -148,6 +149,7 @@ class AuthPlugin { * @return bool */ public function allowEmailChange() { + wfDeprecated( __METHOD__ ); return $this->allowPropChange( 'emailaddress' ); } @@ -157,6 +159,7 @@ class AuthPlugin { * @return bool */ public function allowNickChange() { + wfDeprecated( __METHOD__ ); return $this->allowPropChange( 'nickname' ); } -- 2.20.1