diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-08-07 18:45:21 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-08-07 18:45:21 +0000 |
commit | 4a41c668550ba68d291384395589f6611f5d784d (patch) | |
tree | ac31517f7ee8b8197245f53be9f25a4cfbf9e9d5 | |
parent | ff2aba49ac0bbef7d00da5edc92ee6b3aa18b839 (diff) | |
download | redmine-4a41c668550ba68d291384395589f6611f5d784d.tar.gz redmine-4a41c668550ba68d291384395589f6611f5d784d.zip |
Passing @project to hook calls no longer needed in views.
git-svn-id: http://redmine.rubyforge.org/svn/branches/work@1720 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | hooks/app/views/layouts/base.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/app/views/layouts/base.rhtml b/hooks/app/views/layouts/base.rhtml index 5fe1c6135..e866287a2 100644 --- a/hooks/app/views/layouts/base.rhtml +++ b/hooks/app/views/layouts/base.rhtml @@ -14,7 +14,7 @@ body {behavior: url(<%= stylesheet_path "csshover.htc" %>);} </style> <![endif]--> -<%= call_hook :view_layouts_base_html_head, :project => @project %> +<%= call_hook :view_layouts_base_html_head %> <!-- page specific tags --> <%= yield :header_tags -%> </head> |