From c832021de4b2c4ebb991e1dd84b4aa872913c67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20G=C3=BCnther?= Date: Thu, 14 Mar 2019 14:21:47 +0100 Subject: [PATCH] Fix missed static link [ci skip] --- app/views/homescreen/blocks/_community.html.erb | 2 +- lib/redmine/menu_manager/top_menu/help_menu.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/homescreen/blocks/_community.html.erb b/app/views/homescreen/blocks/_community.html.erb index 8958f8fdbb..ebe75733ae 100644 --- a/app/views/homescreen/blocks/_community.html.erb +++ b/app/views/homescreen/blocks/_community.html.erb @@ -13,7 +13,7 @@
  • - <%= static_link_to :boards %>
  • + <%= static_link_to :forums %>
  • <%= static_link_to :professional_support %>
  • diff --git a/lib/redmine/menu_manager/top_menu/help_menu.rb b/lib/redmine/menu_manager/top_menu/help_menu.rb index a050ec8ea7..262b6bc989 100644 --- a/lib/redmine/menu_manager/top_menu/help_menu.rb +++ b/lib/redmine/menu_manager/top_menu/help_menu.rb @@ -105,7 +105,7 @@ module Redmine::MenuManager::TopMenu::HelpMenu class: 'help-link-shortcuts-link', title: l('homescreen.links.shortcuts') } - result << static_link_item(:boards) + result << static_link_item(:forums) result << static_link_item(:professional_support) result << content_tag(:hr, '', class: 'form--separator') end