In HTML, direct children of the <ul>
tag must be <li>
and nothing else
In mod_whosonline
, there's appears to be a <p>
tag inside the <ul>
https://github.com/joomla/joomla-cms/blob/staging/modules/mod_whosonline/tmpl/default.php#L22
The markup should either be:
<ul>
<li><p>some text</p></li>
<li>user 1</li>
<li>user 2</li>
</ul>
or:
<p>some text</p>
<ul>
<li>user 1</li>
<li>user 2</li>
</ul>
Labels |
Added:
?
|
see 14454 for a PR
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-03-10 11:11:35 |
Closed_By | ⇒ | zero-24 |
looking at the code I think the second option is the correct fix as follows
including the
<p>
tag in the<li>
would result in the message possibly having a bullet which would be incorect for this use case.