diff --git a/core/modules/views/src/Views.php b/core/modules/views/src/Views.php index 2373ebbc21..776c978ff0 100644 --- a/core/modules/views/src/Views.php +++ b/core/modules/views/src/Views.php @@ -151,7 +151,7 @@ public static function fetchPluginNames($type, $key = NULL, array $base = []) { } if (empty($plugin['no_ui']) && (empty($base) || empty($plugin['base']) || array_intersect($base, $plugin['base']))) { - $plugins[$id] = $plugin['title']; + $plugins[$id] = array_key_exists('title',$plugin) ? $plugin['title'] : NULL ; } }