Bug #61962
closedHTML error in the backend login template
100%
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
Updated by Markus Klein about 10 years ago
- Status changed from New to Accepted
Please push a patch for this. Thanks.
Updated by Eric Chavaillaz about 10 years ago
Yes I will make one this evening. And also for https://forge.typo3.org/issues/61963
Updated by Gerrit Code Review about 10 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/33078
Updated by Gerrit Code Review about 10 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/33078
Updated by Eric Chavaillaz about 10 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 306677ee3823d12bb34e1ccbf3136175d24cda44.
Updated by Gerrit Code Review about 10 years ago
- Status changed from Resolved to Under Review
Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/33080
Updated by Eric Chavaillaz about 10 years ago
- Status changed from Under Review to Resolved
Applied in changeset 5ff0e2f627c4bf9877924b15d03006b5e014a17f.