forked from GNUsocial/gnu-social
calculate date once for SUP
This commit is contained in:
parent
4e6cd42757
commit
c5ce56b878
@ -63,11 +63,13 @@ class SupAction extends Action
|
|||||||
# XXX: cache this. Depends on how big this protocol becomes;
|
# XXX: cache this. Depends on how big this protocol becomes;
|
||||||
# Re-doing this query every 15 seconds isn't the end of the world.
|
# 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 ' .
|
$notice->query('SELECT profile_id, max(id) AS max_id ' .
|
||||||
'FROM notice ' .
|
'FROM notice ' .
|
||||||
((common_config('db','type') == 'pgsql') ?
|
((common_config('db','type') == 'pgsql') ?
|
||||||
'WHERE extract(epoch from created) > (extract(epoch from now()) - ' . $seconds . ') ' :
|
'WHERE extract(epoch from created) > (extract(epoch from now()) - ' . $seconds . ') ' :
|
||||||
'WHERE created > (now() - ' . $seconds . ') ' ) .
|
'WHERE created > "'.$divider.'" ' ) .
|
||||||
'GROUP BY profile_id');
|
'GROUP BY profile_id');
|
||||||
|
|
||||||
$updates = array();
|
$updates = array();
|
||||||
|
Loading…
Reference in New Issue
Block a user