From: Ævar Arnfjörð Bjarmason Date: Thu, 13 Oct 2005 23:41:14 +0000 (+0000) Subject: * "{$plink} ({$nlink})" => "$plink ($nlink)" X-Git-Tag: 1.6.0~1423 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=b2064a735dee4c1ceac4a6d449756faa97d4e2a0;p=lhc%2Fweb%2Fwiklou.git * "{$plink} ({$nlink})" => "$plink ($nlink)" --- diff --git a/includes/SpecialMostimages.php b/includes/SpecialMostimages.php index c9946c02e7..bde9e2a06f 100644 --- a/includes/SpecialMostimages.php +++ b/includes/SpecialMostimages.php @@ -48,7 +48,7 @@ class MostimagesPage extends QueryPage { $nl = wfMsg( 'nlinks', $result->value ); $nlink = $skin->makeKnownLink( $nt->getPrefixedText() . '#filelinks', $nl ); - return "{$plink} ({$nlink})"; + return "$plink ($nlink)"; } }