Project

General

Profile

Bug #76155

Updated by Markus Klein almost 8 years ago

<pre> 
 <div xmlns:f="..." xmlns:x="..."> 
   <div xmlns:r="..">asdf</div> 
 </div> 
 </pre> 

 In the example above only the f and x namespaces are recognized, but r is missing. 

 The reason is the usage of a wrong variable in \TYPO3\CMS\Fluid\Core\Parser\PreProcessor\XmlnsNamespaceTemplatePreProcessor such that only the first found tag with a namespace definition is searched. 

 This HTML used to work in CMS 7 and I'm not aware of an according breaking change documentation.

Back