aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/exim_log.rb
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2012-08-20 17:08:36 +0100
committerLouise Crow <louise.crow@gmail.com>2012-08-20 17:08:36 +0100
commit396b272c7f77ffe94ec5efb112e88a3c384d2db0 (patch)
tree6dd70f382bf21ec196c872de2264313468310816 /app/models/exim_log.rb
parent804ce54e241f99e4e146c8c6ffded5fbb1adc790 (diff)
parentf2115fe4357d232d0e8a373881790a9a38ee80f5 (diff)
Merge branch 'develop' of github.com:sebbacon/alaveteli into develop
Diffstat (limited to 'app/models/exim_log.rb')
-rw-r--r--app/models/exim_log.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/exim_log.rb b/app/models/exim_log.rb
index 60faa7f0b..82000efa1 100644
--- a/app/models/exim_log.rb
+++ b/app/models/exim_log.rb
@@ -94,7 +94,7 @@ class EximLog < ActiveRecord::Base
# Get all requests sent for from 2 to 10 days ago. The 2 day gap is
# because we load exim log lines via cron at best an hour after they
# are made)
- irs = InfoRequest.find(:all, :conditions => [ "created_at < ? and created_at > ?", Time.now() - 2.day, Time.now() - 10.days ] )
+ irs = InfoRequest.find(:all, :conditions => [ "created_at < ? and created_at > ? and user_id is not null", Time.now() - 2.day, Time.now() - 10.days ] )
# Go through each request and check it
ok = true