From a132ee7ca4cff6a11ecc07b468316c0d33c4223f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Joshua=20R=C3=BCsweg?= Date: Wed, 30 Aug 2017 15:03:22 +0200 Subject: [PATCH] Fix method parameters of AmpHtmlOutputProcessor::process() --- .../lib/system/html/output/AmpHtmlOutputProcessor.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); -- 2.20.1