From d69ce54118e8d3115f68348fa151dc79429194a0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sat, 6 Aug 2005 10:38:26 +0000 Subject: [PATCH] * Proper usage of $1 --- includes/SpecialValidate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialValidate.php b/includes/SpecialValidate.php index 7d2567ce96..08296ed485 100644 --- a/includes/SpecialValidate.php +++ b/includes/SpecialValidate.php @@ -628,7 +628,7 @@ class Validation { $this->topicList = $this->getTopicList(); $title = $article->getTitle(); - $wgOut->setPageTitle( str_replace( '$1', $title->getPrefixedText(), wfMsg( 'val_validation_of' ) ) ); + $wgOut->setPageTitle( wfMsg( 'val_validation_of', $title->getPrefixedText() ) ); $offset = $wgRequest->getVal ( "offset" , 0 ) ; $limit = $wgRequest->getVal ( "limit" , 25 ) ; -- 2.20.1