* Proper usage of $1
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sat, 6 Aug 2005 10:38:26 +0000 (10:38 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sat, 6 Aug 2005 10:38:26 +0000 (10:38 +0000)
includes/SpecialValidate.php

index 7d2567c..08296ed 100644 (file)
@@ -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 ) ;