summaryrefslogtreecommitdiffstats
path: root/app/views/timelog
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-01-04 04:20:40 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2015-01-04 04:20:40 +0000
commit11f2ccd42fd60a795bb3dc3c69484b781925e75a (patch)
treedac0dca07d7c6b536944ab8dc68da6c7189ca5b8 /app/views/timelog
parenta9298224b15be4784e171775f932d938bd1c7d21 (diff)
downloadredmine-11f2ccd42fd60a795bb3dc3c69484b781925e75a.tar.gz
redmine-11f2ccd42fd60a795bb3dc3c69484b781925e75a.zip
remove duplicated :id key from app/views/timelog/report.html.erb
Ruby 2.2 shows warning. git-svn-id: http://svn.redmine.org/redmine/trunk@13835 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/timelog')
-rw-r--r--app/views/timelog/report.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/timelog/report.html.erb b/app/views/timelog/report.html.erb
index cb556a656..176f128e0 100644
--- a/app/views/timelog/report.html.erb
+++ b/app/views/timelog/report.html.erb
@@ -23,8 +23,8 @@
<label for='criterias'><%= l(:button_add) %></label>: <%= select_tag('criteria[]', options_for_select([[]] + (@report.available_criteria.keys - @report.criteria).collect{|k| [l_or_humanize(@report.available_criteria[k][:label]), k]}),
:onchange => "this.form.submit();",
:style => 'width: 200px',
- :id => nil,
- :disabled => (@report.criteria.length >= 3), :id => "criterias") %>
+ :disabled => (@report.criteria.length >= 3),
+ :id => "criterias") %>
<%= link_to l(:button_clear), {:project_id => @project, :issue_id => @issue, :period_type => params[:period_type], :period => params[:period], :from => @from, :to => @to, :columns => @report.columns}, :class => 'icon icon-reload' %></p>
<% end %>