Skip to content

Commit

Permalink
Issue #1237978 - If the digests are not set to use local timezone, no…
Browse files Browse the repository at this point in the history
… email is sent by BogdanN
  • Loading branch information
IceCreamYou committed Aug 3, 2011
1 parent d7387c7 commit e8362d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions digests.cron.inc
Expand Up @@ -50,10 +50,10 @@ function _digests_cron() {
}
elseif ($default) {
if (variable_get('digests_limit', 250)) {
$result = db_query_range($query, 0, variable_get('digests_limit', 250));
$result = db_query_range($query, $now, 0, variable_get('digests_limit', 250));
}
else {
$result = db_query($query);
$result = db_query($query, $now);
}
}

Expand Down

0 comments on commit e8362d5

Please sign in to comment.