Fix method parameters of AmpHtmlOutputProcessor::process()
authorJoshua Rüsweg <josh@bastelstu.be>
Wed, 30 Aug 2017 13:03:22 +0000 (15:03 +0200)
committerJoshua Rüsweg <josh@bastelstu.be>
Wed, 30 Aug 2017 13:03:33 +0000 (15:03 +0200)
wcfsetup/install/files/lib/system/html/output/AmpHtmlOutputProcessor.class.php

index 7115f35ca1a70086616dadf28a46b635c89d8bde..8d804aee3ec64fdec2c08eebbd3878f11ba72d77 100644 (file)
@@ -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();