diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-19 13:45:41 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-19 13:45:41 -0400 |
commit | 2e320ceeadf5e134352a9bb83efff93964a40f81 (patch) | |
tree | deb85d0e68fa6abb7c6ab4ed750d18e837dbcf8b /app/Template/comment/show.php | |
parent | fe85d83621224b7f5ff29b12c57c4fee1caafc4a (diff) |
Handle multiple avatar sizes
Diffstat (limited to 'app/Template/comment/show.php')
-rw-r--r-- | app/Template/comment/show.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/comment/show.php b/app/Template/comment/show.php index ebf4142b..ce456c5d 100644 --- a/app/Template/comment/show.php +++ b/app/Template/comment/show.php @@ -1,6 +1,6 @@ <div class="comment <?= isset($preview) ? 'comment-preview' : '' ?>" id="comment-<?= $comment['id'] ?>"> - <?= $this->user->avatar($comment['user_id'], $comment['username'], $comment['name'], $comment['email']) ?> + <?= $this->avatar->render($comment['user_id'], $comment['username'], $comment['name'], $comment['email']) ?> <div class="comment-title"> <?php if (! empty($comment['username'])): ?> |