From c7618cdc5d333eb79cd94ea38fff7a4a70dc427f Mon Sep 17 00:00:00 2001 From: bsag Date: Sun, 12 Jun 2005 12:23:51 +0000 Subject: [PATCH] Oops. Got a bit carried away with the last commit, and hid completed projects from /projects listing. Put this right. (I'm ill and I should really get into bed...) git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@106 a4c988fc-2ded-0310-b66e-134b36920a42 --- tracks/app/controllers/project_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracks/app/controllers/project_controller.rb b/tracks/app/controllers/project_controller.rb index c0e9848a..6eb168c2 100644 --- a/tracks/app/controllers/project_controller.rb +++ b/tracks/app/controllers/project_controller.rb @@ -17,7 +17,7 @@ class ProjectController < ApplicationController # def list @page_title = "TRACKS::List Projects" - @projects = Project.find( :all, :conditions => "done=0", :order => "position ASC" ) + @projects = Project.find( :all, :order => "position ASC" ) end # Filter the projects to show just the one passed in the URL