Skip to content

Commit

Permalink
Fetch a comment's author using `comment_author_name'
Browse files Browse the repository at this point in the history
refs #8613
  • Loading branch information
Johannes Meyer committed Apr 9, 2015
1 parent 21c7601 commit 5372dfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -469,7 +469,7 @@ public function commentsAction()
'id' => 'comment_internal_id',
'objecttype' => 'comment_objecttype',
'comment' => 'comment_data',
'author' => 'comment_author',
'author' => 'comment_author_name',
'timestamp' => 'comment_timestamp',
'type' => 'comment_type',
'persistent' => 'comment_is_persistent',
Expand Down
Expand Up @@ -248,7 +248,7 @@ public function fetchComments()
$comments = $this->backend->select()->from('comment', array(
'id' => 'comment_internal_id',
'timestamp' => 'comment_timestamp',
'author' => 'comment_author',
'author' => 'comment_author_name',
'comment' => 'comment_data',
'type' => 'comment_type',
))
Expand Down

0 comments on commit 5372dfb

Please sign in to comment.