From 18a03b1f133d7d8f307789ead50ea6087f97851f Mon Sep 17 00:00:00 2001 From: webchick Date: Fri, 9 Aug 2013 23:52:52 -0700 Subject: [PATCH] Issue #2031467 by tim.plunkett: Fixed The Place blocks button shows on the Configure block page. --- core/modules/block/block.module | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/modules/block/block.module b/core/modules/block/block.module index 8eeb57f0055..8e054daa150 100644 --- a/core/modules/block/block.module +++ b/core/modules/block/block.module @@ -130,6 +130,11 @@ function block_menu() { 'context' => MENU_CONTEXT_NONE, 'route_name' => 'block_admin_block_delete', ); + $items['admin/structure/block/add/%/%'] = array( + 'title' => 'Place block', + 'type' => MENU_VISIBLE_IN_BREADCRUMB, + 'route_name' => 'block_admin_add', + ); // Block administration is tied to the theme and plugin definition so // that the plugin can appropriately attach to this URL structure. // @todo D8: Use dynamic % arguments instead of static, hard-coded theme names