(bug 17284) Fix broken msg calls. It's defined as tags-edit in all languages.
authorChad Horohoe <demon@users.mediawiki.org>
Sun, 1 Feb 2009 09:12:42 +0000 (09:12 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Sun, 1 Feb 2009 09:12:42 +0000 (09:12 +0000)
includes/specials/SpecialTags.php

index 7442bd3..0fb48bb 100644 (file)
@@ -56,12 +56,12 @@ class SpecialTags extends SpecialPage {
                $newRow .= Xml::tags( 'td', null, Xml::element( 'tt', null, $tag ) );
 
                $disp = ChangeTags::tagDescription( $tag );
-               $disp .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag" ), wfMsg( 'tag-edit' ) ) . ')';
+               $disp .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag" ), wfMsg( 'tags-edit' ) ) . ')';
                $newRow .= Xml::tags( 'td', null, $disp );
 
                $desc = wfMsgExt( "tag-$tag-description", 'parseinline' );
                $desc = wfEmptyMsg( "tag-$tag-description", $desc ) ? '' : $desc;
-               $desc .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag-description" ), wfMsg( 'tag-edit' ) ) . ')';
+               $desc .= ' (' . $sk->link( Title::makeTitle( NS_MEDIAWIKI, "Tag-$tag-description" ), wfMsg( 'tags-edit' ) ) . ')';
                $newRow .= Xml::tags( 'td', null, $desc );
 
                $hitcount = wfMsg( 'tags-hitcount', $hitcount );