Project

General

Profile

Actions

Bug #61962

closed

HTML error in the backend login template

Added by Eric Chavaillaz over 9 years ago. Updated over 5 years ago.

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 #1

Updated by Markus Klein over 9 years ago

  • Status changed from New to Accepted

Please push a patch for this. Thanks.

Actions #2

Updated by Eric Chavaillaz over 9 years ago

Yes I will make one this evening. And also for https://forge.typo3.org/issues/61963

Actions #3

Updated by Gerrit Code Review over 9 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

Actions #4

Updated by Gerrit Code Review over 9 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

Actions #5

Updated by Eric Chavaillaz over 9 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #6

Updated by Gerrit Code Review over 9 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

Actions #7

Updated by Eric Chavaillaz over 9 years ago

  • Status changed from Under Review to Resolved
Actions #8

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF