1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-09 16:17:14 +02:00

Issue #1944 IMPORTANT: Any reference to #comments-container in the theme must be changed to .comments-container

This commit is contained in:
Cameron
2019-04-30 12:01:09 -07:00
parent be71965cb6
commit e087dc52a2
3 changed files with 7 additions and 7 deletions

View File

@@ -1173,11 +1173,11 @@ class comment
if($text)
{
//XXX Do NOT add to template - too important to allow for modification.
$text = "<ul class='media-list comments-container' id='".$containerTarget."'>\n".$text."\n</ul>";
$text = "<ul class='comments-container media-list' id='".$containerTarget."'>\n".$text."\n</ul>";
}
else
{
$text = "<ul class='media-list comments-container' id='".$containerTarget."'><li><!-- --></li></ul>";
$text = "<ul class='comments-container media-list' id='".$containerTarget."'><li><!-- --></li></ul>";
}