Select comment name in the comment detail view

refs #11398
This commit is contained in:
Eric Lippmann 2016-08-31 13:46:09 +02:00
parent 39f225a627
commit 25a17b0bc9
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,7 @@ class CommentController extends Controller
'type' => 'comment_type',
'persistent' => 'comment_is_persistent',
'expiration' => 'comment_expiration',
'name' => 'comment_name',
'host_name',
'service_description',
'host_display_name',
@ -73,6 +74,7 @@ class CommentController extends Controller
->populate(array(
'comment_id' => $this->comment->id,
'comment_is_service' => isset($this->comment->service_description),
'comment_name' => $this->comment->name,
'redirect' => $listUrl
))
->handleRequest();