r80408 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r80407‎ | r80408 | r80409 >
Date:02:29, 16 January 2011
Author:dantman
Status:ok
Tags:
Comment:
Fix another bad boolean from r80248.
Modified paths:
  • /trunk/phase3/includes/User.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/User.php
@@ -3246,7 +3246,7 @@
32473247 */
32483248 static function getGroupPage( $group ) {
32493249 $msg = wfMessage( 'grouppage-' . $group )->inContentLanguage();
3250 - if( !$msg->exists() ) {
 3250+ if( $msg->exists() ) {
32513251 $title = Title::newFromText( $msg->text() );
32523252 if( is_object( $title ) )
32533253 return $title;

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r80248Implement Message::isBlank and Message::isDisabled....dantman10:51, 14 January 2011

Status & tagging log