From: Joshua Rüsweg Date: Wed, 30 Aug 2017 13:03:22 +0000 (+0200) Subject: Fix method parameters of AmpHtmlOutputProcessor::process() X-Git-Tag: 3.1.0_Alpha_2~7 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a132ee7ca4cff6a11ecc07b468316c0d33c4223f;p=GitHub%2FWoltLab%2FWCF.git Fix method parameters of AmpHtmlOutputProcessor::process() --- diff --git a/wcfsetup/install/files/lib/system/html/output/AmpHtmlOutputProcessor.class.php b/wcfsetup/install/files/lib/system/html/output/AmpHtmlOutputProcessor.class.php index 7115f35ca1..8d804aee3e 100644 --- a/wcfsetup/install/files/lib/system/html/output/AmpHtmlOutputProcessor.class.php +++ b/wcfsetup/install/files/lib/system/html/output/AmpHtmlOutputProcessor.class.php @@ -18,8 +18,8 @@ class AmpHtmlOutputProcessor extends HtmlOutputProcessor { /** * @inheritDoc */ - public function process($html, $objectType, $objectID, $doKeywordHighlighting = true) { - parent::process($html, $objectType, $objectID, $doKeywordHighlighting); + public function process($html, $objectType, $objectID, $doKeywordHighlighting = true, $languageID = null) { + parent::process($html, $objectType, $objectID, $doKeywordHighlighting, $languageID); $document = $this->getHtmlOutputNodeProcessor()->getDocument();