diff --git a/core/modules/history/lib/Drupal/history/Plugin/views/field/HistoryUserTimestamp.php b/core/modules/history/lib/Drupal/history/Plugin/views/field/HistoryUserTimestamp.php index 2a67c67..32456fa 100644 --- a/core/modules/history/lib/Drupal/history/Plugin/views/field/HistoryUserTimestamp.php +++ b/core/modules/history/lib/Drupal/history/Plugin/views/field/HistoryUserTimestamp.php @@ -37,7 +37,6 @@ public function init(ViewExecutable $view, DisplayPluginBase $display, array &$o if ($user->uid) { $this->additional_fields['created'] = array('table' => 'node', 'field' => 'created'); $this->additional_fields['changed'] = array('table' => 'node', 'field' => 'changed'); - $this->additional_fields['published'] = array('table' => 'node', 'field' => 'published'); if (module_exists('comment') && !empty($this->options['comments'])) { $this->additional_fields['last_comment'] = array('table' => 'node_comment_statistics', 'field' => 'last_comment_timestamp'); }