From a389298ef75312d24a45c9070b80a4d0eaa9261d Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Thu, 9 May 2013 21:20:19 +0100 Subject: [PATCH] Issue #1975114 by dawehner, ACF: Fixed Views references menu_default_node_menu() variable which doesn't exist anywhere else. --- .../views/lib/Drupal/views/Plugin/views/display/Page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php b/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php index daf4186daf90..294d6f600b78 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php @@ -56,7 +56,7 @@ protected function defineOptions() { 'title' => array('default' => '', 'translatable' => FALSE), 'description' => array('default' => '', 'translatable' => FALSE), 'weight' => array('default' => 0), - 'name' => array('default' => variable_get('menu_default_node_menu', 'navigation')), + 'name' => array('default' => 'navigation'), 'context' => array('default' => ''), ), ); -- GitLab