From: Daniel Friesen Date: Sun, 16 Jan 2011 02:29:53 +0000 (+0000) Subject: Fix another bad boolean from r80248. X-Git-Tag: 1.31.0-rc.0~32514 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=f5cbd0c5c23e35d70bec0993f6345034c4db5d9e;p=lhc%2Fweb%2Fwiklou.git Fix another bad boolean from r80248. --- 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;