summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-06-29 09:08:58 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-06-29 09:08:58 +0000
commita40add57de53ed3f5b0c91028ce45d9f4ec902d3 (patch)
treec958be2004322c7cff897ab402a1a2c4ce3682f5 /app
parent0344719482d47c7e69761c6f2d550f3cd98efa93 (diff)
downloadredmine-a40add57de53ed3f5b0c91028ce45d9f4ec902d3.tar.gz
redmine-a40add57de53ed3f5b0c91028ce45d9f4ec902d3.zip
Adds HTML titles to forums related views.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1598 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/boards/index.rhtml2
-rw-r--r--app/views/boards/show.rhtml2
-rw-r--r--app/views/messages/show.rhtml2
3 files changed, 6 insertions, 0 deletions
diff --git a/app/views/boards/index.rhtml b/app/views/boards/index.rhtml
index 8d4560653..655352a96 100644
--- a/app/views/boards/index.rhtml
+++ b/app/views/boards/index.rhtml
@@ -38,3 +38,5 @@
<% content_for :header_tags do %>
<%= auto_discovery_link_tag(:atom, {:controller => 'projects', :action => 'activity', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.rss_key}) %>
<% end %>
+
+<% html_title l(:label_board_plural) %>
diff --git a/app/views/boards/show.rhtml b/app/views/boards/show.rhtml
index 26d17ae56..5b0c208a3 100644
--- a/app/views/boards/show.rhtml
+++ b/app/views/boards/show.rhtml
@@ -57,3 +57,5 @@
<% else %>
<p class="nodata"><%= l(:label_no_data) %></p>
<% end %>
+
+<% html_title h(@board.name) %>
diff --git a/app/views/messages/show.rhtml b/app/views/messages/show.rhtml
index 07508fbfd..7e5975bfd 100644
--- a/app/views/messages/show.rhtml
+++ b/app/views/messages/show.rhtml
@@ -54,3 +54,5 @@
<% content_for :header_tags do %>
<%= stylesheet_link_tag 'scm' %>
<% end %>
+
+<% html_title h(@topic.subject) %>