From: Ævar Arnfjörð Bjarmason Date: Sat, 6 Aug 2005 10:38:26 +0000 (+0000) Subject: * Proper usage of $1 X-Git-Tag: 1.6.0~2055 X-Git-Url: http://git.cyclocoop.org//%22%22.str_replace%28%27%22%27%2C?a=commitdiff_plain;h=d69ce54118e8d3115f68348fa151dc79429194a0;p=lhc%2Fweb%2Fwiklou.git * Proper usage of $1 --- 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 ) ;