From 89c179932eaf16c090be671509036a21a0ff68ec Mon Sep 17 00:00:00 2001 From: andrew Date: Sun, 23 Nov 2008 01:41:25 -0600 Subject: [PATCH] do not show facebook images --- app/controllers/home.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/home.rb b/app/controllers/home.rb index b10ac64..a272357 100644 --- a/app/controllers/home.rb +++ b/app/controllers/home.rb @@ -8,7 +8,7 @@ class Home < Application end def hall_of_fame - @top_oneness = Photo.find :all, :order => 'oneness DESC, id DESC', :limit => 10, :conditions => 'oneness > 0' + @top_oneness = Photo.find :all, :order => 'oneness DESC, id DESC', :limit => 10, :conditions => 'oneness > 0 AND facebook_id IS NULL' render end