r16824 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r16823‎ | r16824 | r16825 >
Date:23:13, 6 October 2006
Author:collinj
Status:old
Tags:
Comment:
(bug 7509) Make back arrow in Special:Whatlinkshere editable through Mediawiki namespace
Modified paths:
  • /trunk/phase3/includes/SpecialWhatlinkshere.php (modified) (history)
  • /trunk/phase3/languages/messages/MessagesEn.php (modified) (history)
  • /trunk/phase3/maintenance/language/languages.inc (modified) (history)

Diff [purge]

Index: trunk/phase3/maintenance/language/languages.inc
@@ -53,6 +53,7 @@
5454 'preferences-summary',
5555 'specialpages-summary',
5656 'whatlinkshere-summary',
 57+ 'whatlinkshere-barrow',
5758 'variantname-zh-cn',
5859 'variantname-zh-tw',
5960 'variantname-zh-hk',
Index: trunk/phase3/includes/SpecialWhatlinkshere.php
@@ -59,7 +59,7 @@
6060
6161 $isredir = ' (' . wfMsg( 'isredirect' ) . ")\n";
6262
63 - $wgOut->addHTML('&lt; '.$this->skin->makeLinkObj($this->target, '', 'redirect=no' )."<br />\n");
 63+ $wgOut->addHTML( wfMsg( 'whatlinkshere-barrow' ) . ' ' .$this->skin->makeLinkObj($this->target, '', 'redirect=no' )."<br />\n");
6464
6565 $this->showIndirectLinks( 0, $this->target, $this->limit, $this->from, $this->dir );
6666 }
Index: trunk/phase3/languages/messages/MessagesEn.php
@@ -1594,6 +1594,7 @@
15951595 #
15961596 'whatlinkshere' => 'What links here',
15971597 'whatlinkshere-summary' => '',
 1598+'whatlinkshere-barrow' => '&lt;',
15981599 'notargettitle' => 'No target',
15991600 'notargettext' => 'You have not specified a target page or user
16001601 to perform this function on.',

Follow-up revisions

RevisionCommit summaryAuthorDate
r40953(bug 7509) Don't hardcode separation strings, make them configurable...siebrand09:41, 17 September 2008
r40997Revert r40953 '(bug 7509) Don't hardcode separation strings, make them config...brion17:11, 18 September 2008
r47046(bug 7509) Separation strings should be configurable...siebrand17:48, 9 February 2009