From f5cbd0c5c23e35d70bec0993f6345034c4db5d9e Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Sun, 16 Jan 2011 02:29:53 +0000 Subject: [PATCH] Fix another bad boolean from r80248. --- includes/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/User.php b/includes/User.php index 1e972a4d23..906918c454 100644 --- a/includes/User.php +++ b/includes/User.php @@ -3246,7 +3246,7 @@ class User { */ static function getGroupPage( $group ) { $msg = wfMessage( 'grouppage-' . $group )->inContentLanguage(); - if( !$msg->exists() ) { + if( $msg->exists() ) { $title = Title::newFromText( $msg->text() ); if( is_object( $title ) ) return $title; -- 2.20.1