From b2064a735dee4c1ceac4a6d449756faa97d4e2a0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Thu, 13 Oct 2005 23:41:14 +0000 Subject: [PATCH] * "{$plink} ({$nlink})" => "$plink ($nlink)" --- includes/SpecialMostimages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)"; } } -- 2.20.1