* Fix fatal error in history when validation on
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 10 Jul 2005 01:16:05 +0000 (01:16 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 10 Jul 2005 01:16:05 +0000 (01:16 +0000)
RELEASE-NOTES
includes/PageHistory.php

index 7688e0c..944c1bd 100644 (file)
@@ -552,6 +552,7 @@ of MediaWiki:Newpagetext) to &action=edit, if page is new.
 * (bug 1064) Implements Special:Unusedcategories
 * (bug 2311) New language file for Macedonian
 * Fix nohistory message on empty page history
+* Fix fatal error in history when validation on
 
 
 === Caveats ===
index 5445934..1bf67a5 100644 (file)
@@ -167,7 +167,7 @@ class PageHistory {
                 * Article validation line.
                 */
                if ($wgUseValidation)
-                       $s .= '<p>' . Validation::link2statistics ( $this->mArticle ) . '</p>' ;
+                       $s .= '<p>' . Validation::getStatisticsLink( $this->mArticle ) . '</p>' ;
 
                $wgOut->addHTML( $s );
                wfProfileOut( $fname );