diff --git a/typo3/sysext/core/Classes/Html/RteHtmlParser.php b/typo3/sysext/core/Classes/Html/RteHtmlParser.php index d715ceea0d61f1fdcb7b35e8e1704410fb9c1fea..793505bea36ea6008957a90ff73ca69191fe3701 100644 --- a/typo3/sysext/core/Classes/Html/RteHtmlParser.php +++ b/typo3/sysext/core/Classes/Html/RteHtmlParser.php @@ -994,7 +994,7 @@ class RteHtmlParser extends HtmlParser if (!empty($this->allowedAttributesForParagraphTags)) { list($tagAttributes) = $this->get_tag_attributes($fTag); // Make sure the tag attributes only contain the ones that are defined to be allowed - $tagAttributes = array_intersect_key($tagAttributes, $this->allowedAttributesForParagraphTags); + $tagAttributes = array_intersect_key($tagAttributes, array_flip($this->allowedAttributesForParagraphTags)); // Only allow classes that are whitelisted in $this->allowedClasses if (trim($tagAttributes['class']) !== '' && !empty($this->allowedClasses) && !in_array($tagAttributes['class'], $this->allowedClasses, true)) {