]> git.openstreetmap.org Git - rails.git/commitdiff
more boolean correcting
authorDave Stubbs <osm@randomjunk.co.uk>
Sat, 8 Nov 2008 10:48:07 +0000 (10:48 +0000)
committerDave Stubbs <osm@randomjunk.co.uk>
Sat, 8 Nov 2008 10:48:07 +0000 (10:48 +0000)
app/controllers/trace_controller.rb

index f0d8033f2e15834a4f0ce3582364fd71f459cd09..d94280a6af080c469a2662212382e340e05c4387 100644 (file)
@@ -51,7 +51,8 @@ class TraceController < ApplicationController
       conditions << @tag
     end
     
-    conditions[0] += " AND gpx_files.visible = 1"   #FIXME: use boolean true as parameter to active record
+    conditions[0] += " AND gpx_files.visible = ?"
+    conditions << true
 
     @trace_pages, @traces = paginate(:traces,
                                      :include => [:user, :tags],
@@ -196,7 +197,7 @@ class TraceController < ApplicationController
   end
 
   def georss
-    conditions = ["gpx_files.public = 1"] # fixme pass boolean true as parameter
+    conditions = ["gpx_files.public = ?", true]
 
     if params[:display_name]
       conditions[0] += " AND users.display_name = ?"