Followup r85228; Small fix for ()> syntax error that should have been ()->
authorDaniel Friesen <dantman@users.mediawiki.org>
Sun, 3 Apr 2011 08:49:16 +0000 (08:49 +0000)
committerDaniel Friesen <dantman@users.mediawiki.org>
Sun, 3 Apr 2011 08:49:16 +0000 (08:49 +0000)
includes/specials/SpecialBlankpage.php

index a187d3a..42d3377 100644 (file)
@@ -33,6 +33,6 @@ class SpecialBlankpage extends UnlistedSpecialPage {
        }
        public function execute( $par ) {
                $this->setHeaders();
-               $this->getOutput()>addWikiMsg('intentionallyblankpage');
+               $this->getOutput()->addWikiMsg('intentionallyblankpage');
        }
 }