From fcd5b14c923cdb9d565ada584e4612cb22af82ab Mon Sep 17 00:00:00 2001 From: Justin Du Date: Tue, 29 Nov 2016 16:36:21 -0600 Subject: [PATCH] Use isDisabled() instead of isBlank() in getGrantName in User.php Bug: T151956 Change-Id: Ic23c75b784c725f8f73eb1cf98d2bdb3763ab09d --- includes/user/User.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/user/User.php b/includes/user/User.php index 82d8806f75..4950e27e72 100644 --- a/includes/user/User.php +++ b/includes/user/User.php @@ -5066,13 +5066,14 @@ class User implements IDBAccessObject { /** * Get the description of a given right * + * @since 1.29 * @param string $right Right to query * @return string Localized description of the right */ public static function getRightDescription( $right ) { $key = "right-$right"; $msg = wfMessage( $key ); - return $msg->isBlank() ? $right : $msg->text(); + return $msg->isDisabled() ? $right : $msg->text(); } /** -- 2.20.1