# HG changeset patch # User Chris Cannam # Date 1367495324 -3600 # Node ID 2818bf60c84c1717b2dbc806101c2ff295e15107 # Parent b587499d50a964f5769946e007f34a51e2cf4110 Mark intro text html safe diff -r b587499d50a9 -r 2818bf60c84c app/views/projects/settings/_overview.html.erb --- a/app/views/projects/settings/_overview.html.erb Thu May 02 12:48:34 2013 +0100 +++ b/app/views/projects/settings/_overview.html.erb Thu May 02 12:48:44 2013 +0100 @@ -5,7 +5,7 @@
-

<%= l(:text_has_welcome_page_info, { :overview_link => link_to(l(:label_overview), { :controller => 'projects', :action => 'show' } ) } ) %>

+

<%= l(:text_has_welcome_page_info, { :overview_link => link_to(l(:label_overview), { :controller => 'projects', :action => 'show' } ) } ).html_safe %>

<% if @project.module_enabled? :wiki %> @@ -13,7 +13,7 @@ <% else %> -

<%= l(:text_has_welcome_page_wiki_disabled, { :modules_link => link_to(l(:label_module_plural), { :controller => 'projects', :action => 'settings', :tab => 'modules' } ) } ) %>

+

<%= l(:text_has_welcome_page_wiki_disabled, { :modules_link => link_to(l(:label_module_plural), { :controller => 'projects', :action => 'settings', :tab => 'modules' } ) } ).html_safe %>

<% end %>