]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
calculate date once for SUP
authorEvan Prodromou <evan@controlyourself.ca>
Tue, 30 Jun 2009 15:53:50 +0000 (11:53 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Tue, 30 Jun 2009 15:53:50 +0000 (11:53 -0400)
actions/sup.php

index e446a7b0ddfc3ba0723e8c4eeb0622fcf4418d2a..a5b665562f31f6c3a0624581583e8bade61e3e29 100644 (file)
@@ -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();