diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-02 22:41:53 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-02 22:41:53 +0000 |
commit | 3e0acc0b7e1fda93d8bdd9df7b7c8c9551fad864 (patch) | |
tree | a6c9bbd76bc54f0c1c7a41845e8831fa83053ff9 /app/views/admin | |
parent | 636579b17ddd4b775b060cdb0ac3a94db5e4cb2b (diff) | |
download | redmine-3e0acc0b7e1fda93d8bdd9df7b7c8c9551fad864.tar.gz redmine-3e0acc0b7e1fda93d8bdd9df7b7c8c9551fad864.zip |
Slight improvements to the browser views.
ApplicationHelper#set_html_title replaced by html_title with arguments and can be called several times in views to append elements to the title.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1032 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/index.rhtml | 2 | ||||
-rw-r--r-- | app/views/admin/info.rhtml | 2 | ||||
-rw-r--r-- | app/views/admin/mail_options.rhtml | 2 | ||||
-rw-r--r-- | app/views/admin/projects.rhtml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/app/views/admin/index.rhtml b/app/views/admin/index.rhtml index 933e288a0..1c6cbdee5 100644 --- a/app/views/admin/index.rhtml +++ b/app/views/admin/index.rhtml @@ -44,4 +44,4 @@ <%= link_to l(:label_information_plural), :controller => 'admin', :action => 'info' %> </p> -<% set_html_title l(:label_administration) -%> +<% html_title(l(:label_administration)) -%> diff --git a/app/views/admin/info.rhtml b/app/views/admin/info.rhtml index 4d442f5ad..15ab94851 100644 --- a/app/views/admin/info.rhtml +++ b/app/views/admin/info.rhtml @@ -24,4 +24,4 @@ </table> <% end %> -<% set_html_title(l(:label_information_plural)) -%> +<% html_title(l(:label_information_plural)) -%> diff --git a/app/views/admin/mail_options.rhtml b/app/views/admin/mail_options.rhtml index a4b923873..698933b9b 100644 --- a/app/views/admin/mail_options.rhtml +++ b/app/views/admin/mail_options.rhtml @@ -30,4 +30,4 @@ <%= submit_tag l(:button_save) %> <% end %> -<% set_html_title(l(:field_mail_notification)) -%> +<% html_title(l(:field_mail_notification)) -%> diff --git a/app/views/admin/projects.rhtml b/app/views/admin/projects.rhtml index 295cfd101..3a759ecaa 100644 --- a/app/views/admin/projects.rhtml +++ b/app/views/admin/projects.rhtml @@ -47,4 +47,4 @@ <p class="pagination"><%= pagination_links_full @project_pages, @project_count %></p> -<% set_html_title l(:label_project_plural) -%> +<% html_title(l(:label_project_plural)) -%> |