summaryrefslogtreecommitdiffstats
path: root/app/views/calendars
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-02-21 14:02:22 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-02-21 14:02:22 +0000
commit4abdc0f225038b889fd3bc6f7d5885a7189b7e2b (patch)
treef28bd7468dc47cf55f3013d463b8c5432b9e1978 /app/views/calendars
parent40f2d5a995a11190c64bec6cb43d69992c95e778 (diff)
downloadredmine-4abdc0f225038b889fd3bc6f7d5885a7189b7e2b.tar.gz
redmine-4abdc0f225038b889fd3bc6f7d5885a7189b7e2b.zip
Makes filters behaviour consistent with the issue list.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4911 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/calendars')
-rw-r--r--app/views/calendars/show.html.erb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/calendars/show.html.erb b/app/views/calendars/show.html.erb
index 30bd155a8..b2d1c5cd2 100644
--- a/app/views/calendars/show.html.erb
+++ b/app/views/calendars/show.html.erb
@@ -20,16 +20,16 @@
<%= select_year(@year, :prefix => "year", :discard_type => true) %>
<%= link_to_remote l(:button_apply),
- { :url => { :set_filter => (@query.new_record? ? 1 : nil) },
+ { :url => { :set_filter => 1 },
:update => "content",
:with => "Form.serialize('query_form')"
}, :class => 'icon icon-checked' %>
<%= link_to_remote l(:button_clear),
- { :url => { :project_id => @project, :set_filter => (@query.new_record? ? 1 : nil) },
+ { :url => { :project_id => @project, :set_filter => 1 },
:method => :put,
:update => "content",
- }, :class => 'icon icon-reload' if @query.new_record? %>
+ }, :class => 'icon icon-reload' %>
</p>
<% end %>