diff --git a/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php b/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php index 19cc65a..e3967b2 100644 --- a/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php +++ b/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php @@ -279,7 +279,8 @@ public function submitForm(array &$form, array &$form_state) { $cids = $form_state['values']['comments']; foreach ($cids as $cid) { - // Delete operation handled in \Drupal\comment\Form\ConfirmDeleteMultiple. + // Delete operation handled in \Drupal\comment\Form\ConfirmDeleteMultiple + // see \Drupal\comment\Controller\AdminController::adminPage(). if ($operation == 'unpublish') { $comment = $this->commentStorage->load($cid); $comment->status->value = COMMENT_NOT_PUBLISHED;