From: Alexander Ebert Date: Sat, 8 Oct 2016 10:03:08 +0000 (+0200) Subject: Fixed method signature X-Git-Tag: 3.0.0_Beta_3~50^2~60 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=aa1d71ea8dedf823639562561ed14f44dc15b224;p=GitHub%2FWoltLab%2FWCF.git Fixed method signature --- 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 b4bf974bb8..ef2ac5003a 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) { - parent::process($html, $objectType, $objectID); + public function process($html, $objectType, $objectID, $doKeywordHighlighting = true) { + parent::process($html, $objectType, $objectID, $doKeywordHighlighting); $document = $this->getHtmlOutputNodeProcessor()->getDocument();