diff --git a/core/modules/node/node.module b/core/modules/node/node.module index 93f0ddc..dd1b1bb 100644 --- a/core/modules/node/node.module +++ b/core/modules/node/node.module @@ -2168,6 +2168,14 @@ function node_menu_local_tasks_alter(&$data, $router_item, $root_path) { '#link' => $item, ); } + // Add action link to admin/structure/types/add + $item = menu_get_item('admin/structure/types/add'); + if ($item['access']) { + $data['actions']['output'][] = array( + '#theme' => 'menu_local_action', + '#link' => $item, + ); + } } }