From: Niklas Laxström Date: Wed, 20 May 2009 05:45:18 +0000 (+0000) Subject: Added wfDeprecated too X-Git-Tag: 1.31.0-rc.0~41724 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22suivi_revisions%22%2C%22id_auteur=%24connecte%22%29%20.%20%22?a=commitdiff_plain;h=eac9273e08d8505dd71e3c1396fe290c3c828eaa;p=lhc%2Fweb%2Fwiklou.git Added wfDeprecated too --- 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' ); }