diff --git a/core/modules/shortcut/shortcut.module b/core/modules/shortcut/shortcut.module index 8677c72..c7a647d 100644 --- a/core/modules/shortcut/shortcut.module +++ b/core/modules/shortcut/shortcut.module @@ -742,12 +742,14 @@ function shortcut_toolbar() { $items['shortcuts'] = array( 'tab' => array( - 'title' => t('Shortcuts'), - 'href' => 'admin/config/user-interface/shortcut', - 'html' => FALSE, - 'attributes' => array( - 'title' => t('Shortcuts'), - 'class' => array('icon', 'icon-shortcut'), + '#title' => t('Shortcuts'), + '#href' => 'admin/config/user-interface/shortcut', + '#options' => array( + 'html' => FALSE, + 'attributes' => array( + 'title' => t('Shortcuts'), + 'class' => array('icon', 'icon-shortcut'), + ), ), ), 'tray' => $links_tray, diff --git a/core/modules/toolbar/templates/toolbar.twig b/core/modules/toolbar/templates/toolbar.twig index c2181df..e72bc97 100644 --- a/core/modules/toolbar/templates/toolbar.twig +++ b/core/modules/toolbar/templates/toolbar.twig @@ -5,6 +5,7 @@ * * Available variables: * + * - tab_heading: Translated header for the Tabs section. * - tabs: Themed links for the top level tabs. * - trays: An array of trays. It contains: * - content: The themed tray content. @@ -25,6 +26,7 @@