From 5819c0e97dee4b9e9f41b863d0d5f02c0d024dd6 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Sat, 28 Apr 2012 13:11:53 +0100 Subject: Removed order from _events_form to avoid postgres error --- views/_events_form.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'views') diff --git a/views/_events_form.haml b/views/_events_form.haml index 8eb9112..10bfe11 100644 --- a/views/_events_form.haml +++ b/views/_events_form.haml @@ -5,7 +5,7 @@ %label{:for => "source"} Source %input{:type => "text", :id => "subject", :name => "alert[source]", :value => (params["alert"] ? params["alert"]["source"] : "") } - - Mauve::History.all(:fields => [:type], :unique => true).collect{|h| h.type}.each do |history_type| + - Mauve::History.all(:fields => [:type], :order => nil, :unique => true).collect{|h| h.type}.each do |history_type| %label{:for => "history_"+history_type} = history_type.capitalize %input{:type => "checkbox", :name => "history[type][]", :value => "#{history_type}", :checked => (params["history"] && params["history"]["type"].is_a?(Array) ? params["history"]["type"].include?(history_type) : false) } -- cgit v1.2.1