From: Florianschmidtwelzow Date: Mon, 3 Aug 2015 11:02:48 +0000 (+0200) Subject: Use lower case edit link on Special:WhatLinkshere X-Git-Tag: 1.31.0-rc.0~10539 X-Git-Url: http://git.cyclocoop.org/%28%5B%5E/404?a=commitdiff_plain;h=dac931e109e359cd3577640cf151da320b535ff9;p=lhc%2Fweb%2Fwiklou.git Use lower case edit link on Special:WhatLinkshere Bug: T107633 Change-Id: I2365623d0f0e72645c385be279bc2ccdf4954bcd --- diff --git a/includes/specials/SpecialWhatlinkshere.php b/includes/specials/SpecialWhatlinkshere.php index a6f92d659d..39980d298c 100644 --- a/includes/specials/SpecialWhatlinkshere.php +++ b/includes/specials/SpecialWhatlinkshere.php @@ -323,7 +323,7 @@ class SpecialWhatLinksHere extends IncludableSpecialPage { static $msgcache = null; if ( $msgcache === null ) { static $msgs = array( 'isredirect', 'istemplate', 'semicolon-separator', - 'whatlinkshere-links', 'isimage', 'edit' ); + 'whatlinkshere-links', 'isimage', 'editlink' ); $msgcache = array(); foreach ( $msgs as $msg ) { $msgcache[$msg] = $this->msg( $msg )->escaped(); @@ -364,7 +364,7 @@ class SpecialWhatLinksHere extends IncludableSpecialPage { } # Space for utilities links, with a what-links-here link provided - $wlhLink = $this->wlhLink( $nt, $msgcache['whatlinkshere-links'], $msgcache['edit'] ); + $wlhLink = $this->wlhLink( $nt, $msgcache['whatlinkshere-links'], $msgcache['editlink'] ); $wlh = Xml::wrapClass( $this->msg( 'parentheses' )->rawParams( $wlhLink )->escaped(), 'mw-whatlinkshere-tools'