diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsQuery.php b/core/modules/views/lib/Drupal/views/Annotation/ViewsQuery.php index 5036659..582d2b6 100644 --- a/core/modules/views/lib/Drupal/views/Annotation/ViewsQuery.php +++ b/core/modules/views/lib/Drupal/views/Annotation/ViewsQuery.php @@ -60,7 +60,7 @@ public function get() { return parent::get() + array( 'id' => $this->id, 'title' => isset($this->title) ? $this->title->get() : '', - 'help' => $this->help->get(), + 'help' => isset($this->help) ? $this->help->get() : '', 'no_ui' => $this->no_ui, ); }