Bug #31914
CSS inclusion is not XHTML valid
| Status: | Resolved | Start date: | 2011-11-18 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | Stefan Froemken | % Done: | 100% |
|
| Category: | - | |||
| Target version: | - | |||
| Votes: | 0 |
Description
The CSS inclusion is not XHTML valid, since there is an extra space before the closing tag.
$GLOBALS['TSFE']->additionalHeaderData[$this->prefixId.'_css'] = '<link rel="stylesheet" type="text/css" href="'.$cssFile.'" / >';
should be replaced by this
$GLOBALS['TSFE']->additionalHeaderData[$this->prefixId.'_css'] = '<link rel="stylesheet" type="text/css" href="'.$cssFile.'" />';
History
Updated by Stefan Froemken over 1 year ago
- Status changed from New to Resolved
- Assignee set to Stefan Froemken
- % Done changed from 0 to 100
Hello Torben,
I have solved this problem in current SVN allready.
Stefan