diff options
Diffstat (limited to 'modules/comment/views/comments.html.php')
-rw-r--r-- | modules/comment/views/comments.html.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/comment/views/comments.html.php b/modules/comment/views/comments.html.php index 9b5f7056..111b12bd 100644 --- a/modules/comment/views/comments.html.php +++ b/modules/comment/views/comments.html.php @@ -5,9 +5,11 @@ <li id="gComment-<?= $comment->id ?>"> <p class="gAuthor"> <a href="#"> - <img width="40" height="40" - src="<?= $comment->author()->avatar_url(40, $theme->url("images/avatar.jpg", true)) ?>" - class="gAvatar" alt="<?= $comment->author_name() ?>" /> + <img src="<?= $comment->author()->avatar_url(40, $theme->url("images/avatar.jpg", true)) ?>" + class="gAvatar" + alt="<?= $comment->author_name() ?>" + width="40" + height="40" /> </a> <?= t("on {{date}} <a href=#>{{name}}</a> said", array("date" => date("Y-M-d H:i:s", $comment->created), |