[1;33mdiff --git a/core/modules/comment/lib/Drupal/comment/CommentFormController.php b/core/modules/comment/lib/Drupal/comment/CommentFormController.php[m
[1;33mindex 8256889..3163aba 100644[m
[1;33m--- a/core/modules/comment/lib/Drupal/comment/CommentFormController.php[m
[1;33m+++ b/core/modules/comment/lib/Drupal/comment/CommentFormController.php[m
[1;35m@@ -62,7 +62,7 @@[m [mpublic function form(array $form, array &$form_state) {[m
     if ($is_admin) {[m
       $author = $comment->name->value;[m
       $status = (isset($comment->status->value) ? $comment->status->value : COMMENT_NOT_PUBLISHED);[m
[1;31m-      $date = (!empty($comment->date) ? $comment->date : DrupalDateTime::createFromTimestamp($comment->created->value));[m
[1;32m+[m[1;32m      $date = (!empty($comment->date) ? $comment->date : (isset($comment->created->value) ? DrupalDateTime::createFromTimestamp($comment->created->value) : ''));[m
       if (empty($form_state['comment_preview'])) {[m
         $form['#title'] = t('Edit comment %title', array([m
           '%title' => $comment->subject->value,[m
[1;35m@@ -77,7 +77,7 @@[m [mpublic function form(array $form, array &$form_state) {[m
         $author = ($comment->name->value ? $comment->name->value : '');[m
       }[m
       $status = (user_access('skip comment approval') ? COMMENT_PUBLISHED : COMMENT_NOT_PUBLISHED);[m
[1;31m-      $date = '';[m
[1;32m+[m[1;32m      $date = (!empty($comment->date) ? $comment->date : (isset($comment->created->value) ? DrupalDateTime::createFromTimestamp($comment->created->value) : ''));[m
     }[m
 [m
     // Add the author name field depending on the current user.[m
