X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialMostlinkedtemplates.php;h=f5c2c5fb504489127e1ebd0a8a000f3074486244;hb=49748181dd56ec97e7ba7c13e684a16abceb3cc0;hp=7fcb9d869cb35cc3ed530af6d6b51fb9f93fd292;hpb=19cd639835938da66507a1cc3623073c3217b416;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialMostlinkedtemplates.php b/includes/specials/SpecialMostlinkedtemplates.php index 7fcb9d869c..f5c2c5fb50 100644 --- a/includes/specials/SpecialMostlinkedtemplates.php +++ b/includes/specials/SpecialMostlinkedtemplates.php @@ -22,6 +22,8 @@ * @author Rob Church */ +use Wikimedia\Rdbms\ResultWrapper; + /** * Special page lists templates with a large number of * transclusion links, i.e. "most used" templates @@ -104,7 +106,7 @@ class MostlinkedTemplatesPage extends QueryPage { } return $this->getLanguage()->specialList( - Linker::link( $title ), + $this->getLinkRenderer()->makeLink( $title ), $this->makeWlhLink( $title, $result ) ); } @@ -118,9 +120,9 @@ class MostlinkedTemplatesPage extends QueryPage { */ private function makeWlhLink( $title, $result ) { $wlh = SpecialPage::getTitleFor( 'Whatlinkshere', $title->getPrefixedText() ); - $label = $this->msg( 'ntransclusions' )->numParams( $result->value )->escaped(); + $label = $this->msg( 'ntransclusions' )->numParams( $result->value )->text(); - return Linker::link( $wlh, $label ); + return $this->getLinkRenderer()->makeLink( $wlh, $label ); } protected function getGroupName() {