diff options
Diffstat (limited to 'modules/comment/views/admin_comments.html.php')
-rw-r--r-- | modules/comment/views/admin_comments.html.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/modules/comment/views/admin_comments.html.php b/modules/comment/views/admin_comments.html.php index b95a02f9..dcee0462 100644 --- a/modules/comment/views/admin_comments.html.php +++ b/modules/comment/views/admin_comments.html.php @@ -120,12 +120,15 @@ function update_menu() { <input type="checkbox" name="delete_comments[]" value="<?= $comment->id ?>" /> </td> <td> - <a href="#"><img width="40" height="40" - src="<?= $user->avatar_url(40, $theme->url("images/avatar.jpg")) ?>" - class="gAvatar" alt="<?= $comment->author_name() ?>" /></a> - <br/> + <a href="#"> + <img src="<?= $user->avatar_url(40, $theme->url("images/avatar.jpg")) ?>" + class="gAvatar" + alt="<?= $comment->author_name() ?>" + width="40" + height="40" /> + </a><br/> <a href="mailto:<?= $comment->author_email() ?>" - title="<?= $comment->author_email() ?>"> <?= $comment->author_name() ?> </a> + title="<?= $comment->author_email() ?>"> <?= $comment->author_name() ?> </a> </td> <td> <?= $comment->text ?> |