From: Daniel Friesen Date: Sun, 3 Apr 2011 08:49:16 +0000 (+0000) Subject: Followup r85228; Small fix for ()> syntax error that should have been ()-> X-Git-Tag: 1.31.0-rc.0~31063 X-Git-Url: https://git.heureux-cyclage.org/?a=commitdiff_plain;h=0b287c50981b0d2c15177159879eb427605d90f0;p=lhc%2Fweb%2Fwiklou.git Followup r85228; Small fix for ()> syntax error that should have been ()-> --- diff --git a/includes/specials/SpecialBlankpage.php b/includes/specials/SpecialBlankpage.php index a187d3a311..42d337795c 100644 --- a/includes/specials/SpecialBlankpage.php +++ b/includes/specials/SpecialBlankpage.php @@ -33,6 +33,6 @@ class SpecialBlankpage extends UnlistedSpecialPage { } public function execute( $par ) { $this->setHeaders(); - $this->getOutput()>addWikiMsg('intentionallyblankpage'); + $this->getOutput()->addWikiMsg('intentionallyblankpage'); } }