From 04d9f33941b3cf2bc1e21f92043d48b090579c85 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Mon, 5 May 2014 11:45:20 +0100 Subject: [PATCH] Issue #2250335 by drupaledmonk, pingwin4eg | jhodgdon: Forum hook_help still using URL instead of route. --- core/modules/forum/forum.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/modules/forum/forum.module b/core/modules/forum/forum.module index 551b92b4824..21c4d2e5e47 100644 --- a/core/modules/forum/forum.module +++ b/core/modules/forum/forum.module @@ -48,7 +48,8 @@ function forum_help($path, $arg) { $output = '

' . t('Forums contain forum topics. Use containers to group related forums.') . '

'; $more_help_link = array( '#type' => 'link', - '#href' => 'admin/help/forum', + '#route_name' => 'help.page', + '#route_parameters' => array('name' => 'forum'), '#title' => t('More help'), ); $container = array(