summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--app/Model/Comment.php4
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f4952b53..6282ecee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,10 @@ Improvements:
* Filter/Lexer/QueryBuilder refactoring
+Bug fixes:
+
+* Removed PHP notices in comment suppression view
+
Version 1.0.27
--------------
diff --git a/app/Model/Comment.php b/app/Model/Comment.php
index f7ac4eaa..c5091d89 100644
--- a/app/Model/Comment.php
+++ b/app/Model/Comment.php
@@ -76,7 +76,9 @@ class Comment extends Base
self::TABLE.'.comment',
self::TABLE.'.reference',
User::TABLE.'.username',
- User::TABLE.'.name'
+ User::TABLE.'.name',
+ User::TABLE.'.email',
+ User::TABLE.'.avatar_path'
)
->join(User::TABLE, 'id', 'user_id')
->eq(self::TABLE.'.id', $comment_id)