diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-07 20:52:45 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-07 20:52:45 +0000 |
commit | 7e4611ad318092457a16e5197957f3e77d0dc337 (patch) | |
tree | cd9f83f173dce14a62dd88dbc9fb29c63b798937 /app/views/issues/show.rhtml | |
parent | fdf842a4c458b9f40c233bda221ff241df8eb108 (diff) | |
download | redmine-7e4611ad318092457a16e5197957f3e77d0dc337.tar.gz redmine-7e4611ad318092457a16e5197957f3e77d0dc337.zip |
Removed @html_title assignments in controllers.
Views can now set the header title using set_htmh_title(title) method.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@715 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/show.rhtml')
-rw-r--r-- | app/views/issues/show.rhtml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 3df53e288..59bf9eaed 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -109,3 +109,5 @@ end %> <%= l(:label_export_to) %><%= link_to 'PDF', {:action => 'export_pdf', :id => @issue}, :class => 'icon icon-pdf' %> </div> + +<% set_html_title "#{@issue.tracker.name} ##{@issue.id}" %> |