Actions
Bug #61962
closedHTML error in the backend login template
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
Start date:
2014-09-30
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.5
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Hi,
This is not allowed to have a <div> tag in a <dl> tag in the HTML spec.
So we must adapts the sub-template who render the "news system" in the backend login template :
Before:
<dl id="t3-login-news"> <!-- ###NEWS_ITEM### begin --> <div class="t3-login-news-item###CLASS###"> <dt> <span class="t3-news-date">###DATE###: </span> <span class="t3-news-title">###HEADER###</span> </dt> <dd> ###CONTENT### </dd> </div> <!-- ###NEWS_ITEM### end --> </dl>
After:
<div id="t3-login-news"> <!-- ###NEWS_ITEM### begin --> <dl class="t3-login-news-item###CLASS###"> <dt> <span class="t3-news-date">###DATE###: </span> <span class="t3-news-title">###HEADER###</span> </dt> <dd> ###CONTENT### </dd> </dl> <!-- ###NEWS_ITEM### end --> </div>
Thanks
Actions