diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-26 21:33:44 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2006-12-26 21:33:44 +0000 |
commit | 95cc65f14e02efd18cbb6716a0e0fdf329dae144 (patch) | |
tree | 6e40d3e7cc84052a0dff14c7ebd8b1b5f78e53c2 /app/views/enumerations | |
parent | b3a3d3e2fab59c542c40135b242364780e9a9768 (diff) | |
download | redmine-95cc65f14e02efd18cbb6716a0e0fdf329dae144.tar.gz redmine-95cc65f14e02efd18cbb6716a0e0fdf329dae144.zip |
replaced deprecated controller instance variables: @params, @session, @request
git-svn-id: http://redmine.rubyforge.org/svn/trunk@127 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/enumerations')
-rw-r--r-- | app/views/enumerations/list.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/enumerations/list.rhtml b/app/views/enumerations/list.rhtml index 15b91c1ac..2d5726bcf 100644 --- a/app/views/enumerations/list.rhtml +++ b/app/views/enumerations/list.rhtml @@ -2,7 +2,7 @@ <% Enumeration::OPTIONS.each do |option, name| %>
- <% if @params[:opt]==option %>
+ <% if params[:opt]==option %>
<p><%= image_tag 'dir_open' %> <b><%= l(name) %></b></p>
<ul>
|