Index: app/models/project.rb =================================================================== --- app/models/project.rb (revision 1746) +++ app/models/project.rb (working copy) @@ -88,7 +88,7 @@ # returns latest created projects # non public projects will be returned only if user is a member of those - def self.latest(user=nil, count=5) + def self.latest(user=nil, count=10) find(:all, :limit => count, :conditions => visible_by(user), :order => "created_on DESC") end