From: Brion Vibber Date: Tue, 8 Sep 2009 23:54:03 +0000 (+0000) Subject: Cleanup for r55641: call static function statically X-Git-Tag: 1.31.0-rc.0~39823 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=ecf95fd877ac0ac7ffcad4fa228a365f51044189;p=lhc%2Fweb%2Fwiklou.git Cleanup for r55641: call static function statically --- diff --git a/includes/api/ApiFormatXml.php b/includes/api/ApiFormatXml.php index b34ed3aaff..00493bef6a 100644 --- a/includes/api/ApiFormatXml.php +++ b/includes/api/ApiFormatXml.php @@ -61,7 +61,7 @@ class ApiFormatXml extends ApiFormatBase { $this->printText(''); if (!is_null($this->mXslt)) $this->addXslt(); - $this->printText($this->recXmlPrint($this->mRootElemName, + $this->printText(self::recXmlPrint($this->mRootElemName, $this->getResultData(), $this->getIsHtml() ? -2 : null, $this->mDoubleQuote));