Index: trunk/phase3/includes/specials/SpecialVersion.php |
— | — | @@ -418,13 +418,10 @@ |
419 | 419 | $descriptionMsgKey = $descriptionMsg[0]; // Get the message key |
420 | 420 | array_shift( $descriptionMsg ); // Shift out the message key to get the parameters only |
421 | 421 | array_map( "htmlspecialchars", $descriptionMsg ); // For sanity |
422 | | - $msg = wfMsg( $descriptionMsgKey, $descriptionMsg ); |
| 422 | + $description = wfMsg( $descriptionMsgKey, $descriptionMsg ); |
423 | 423 | } else { |
424 | | - $msg = wfMsg( $descriptionMsg ); |
| 424 | + $description = wfMsg( $descriptionMsg ); |
425 | 425 | } |
426 | | - if ( !wfEmptyMsg( $descriptionMsg, $msg ) && $msg != '' ) { |
427 | | - $description = $msg; |
428 | | - } |
429 | 426 | } |
430 | 427 | |
431 | 428 | if ( $svnText !== false ) { |