diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-18 23:06:32 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-18 23:06:32 -0400 |
commit | fa86542f90774d7a7d8f3e81ee35821ca25b7fd4 (patch) | |
tree | e6dd027dc827b18e07536414cf4fb86321763060 /app/Template/comment | |
parent | c4c200b530e0585fafadce41f75e383ec0ff057e (diff) |
Added pluggable Avatar providers
Diffstat (limited to 'app/Template/comment')
-rw-r--r-- | app/Template/comment/show.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/app/Template/comment/show.php b/app/Template/comment/show.php index 873e1470..c5963666 100644 --- a/app/Template/comment/show.php +++ b/app/Template/comment/show.php @@ -1,9 +1,7 @@ <div class="comment <?= isset($preview) ? 'comment-preview' : '' ?>" id="comment-<?= $comment['id'] ?>"> <p class="comment-title"> - <?php if (! empty($comment['email'])): ?> - <?= $this->user->avatar($comment['email'], $comment['name'] ?: $comment['username']) ?> - <?php endif ?> + <?= $this->user->avatar($comment['user_id'], $comment['username'], $comment['name'], $comment['email']) ?> <?php if (! empty($comment['username'])): ?> <span class="comment-username"><?= $this->text->e($comment['name'] ?: $comment['username']) ?></span> @ |