Index: plugins/context_reaction_block.inc =================================================================== --- plugins/context_reaction_block.inc (revision 1945) +++ plugins/context_reaction_block.inc (working copy) @@ -277,6 +277,11 @@ 'content' => $block->content, 'context' => array('#markup' => ""), ); + //Contextual links are in the wrong spot in the render array once we've nested them + if (isset($block->content['content']['#contextual_links'])) { + $block->content['#contextual_links'] = $block->content['content']['#contextual_links']; + unset($block->content['content']['#contextual_links']); + } } return $block; }