From: Tom Hughes Date: Mon, 20 Feb 2012 11:45:17 +0000 (+0000) Subject: Don't escape the title - rails will handle it X-Git-Tag: live~5799 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/155babfec69a2a74af72ded0448fd28e6938e6aa Don't escape the title - rails will handle it --- diff --git a/app/views/layouts/_head.html.erb b/app/views/layouts/_head.html.erb index 2dda3d799..8a0f62d92 100644 --- a/app/views/layouts/_head.html.erb +++ b/app/views/layouts/_head.html.erb @@ -16,5 +16,5 @@ <%= style_rules %> <%= yield :head %> <%= csrf_meta_tag %> - <%= t 'layouts.project_name.title' %><%= ' | '+ h(@title) if @title %> + <%= t 'layouts.project_name.title' %><%= ' | '+ @title if @title %>