diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-30 11:53:50 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-30 11:53:50 -0400 |
commit | c5ce56b878bc033af610f740daf8c49e05233f1e (patch) | |
tree | 40afbda181c4dce1df6e867bf86ce8a1d0b86daf /actions | |
parent | 4e6cd427577f55e024fac26b5cdab6c15ba9f97f (diff) |
calculate date once for SUP
Diffstat (limited to 'actions')
-rw-r--r-- | actions/sup.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/sup.php b/actions/sup.php index e446a7b0d..a5b665562 100644 --- a/actions/sup.php +++ b/actions/sup.php @@ -63,11 +63,13 @@ class SupAction extends Action # XXX: cache this. Depends on how big this protocol becomes; # Re-doing this query every 15 seconds isn't the end of the world. + $divider = common_sql_date(time() - $seconds); + $notice->query('SELECT profile_id, max(id) AS max_id ' . 'FROM notice ' . ((common_config('db','type') == 'pgsql') ? 'WHERE extract(epoch from created) > (extract(epoch from now()) - ' . $seconds . ') ' : - 'WHERE created > (now() - ' . $seconds . ') ' ) . + 'WHERE created > "'.$divider.'" ' ) . 'GROUP BY profile_id'); $updates = array(); |