Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -548,7 +548,8 @@ |
549 | 549 | |
550 | 550 | $text = wfMsg( $message ); |
551 | 551 | if ( $text == "<$message>" ) { |
552 | | - $text = html_entity_decode($text); |
| 552 | + global $wgContLang; |
| 553 | + $text = $wgContLang->getNsText( Namespace::getSubject( $title->getNamespace() ) ); |
553 | 554 | } |
554 | 555 | |
555 | 556 | return array( |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -730,8 +730,8 @@ |
731 | 731 | * Added optional suggest feature for the search box. Set wgUseAjax to true to |
732 | 732 | enable it. |
733 | 733 | * (bug 5277) Use audio/midi rather that audio/mid |
| 734 | +* (bug 5410) Use namespace name when a custom namespace's nstab-NS message is nonexistent |
734 | 735 | |
735 | | - |
736 | 736 | === Caveats === |
737 | 737 | |
738 | 738 | Some output, particularly involving user-supplied inline HTML, may not |