diff options
author | CiaranG <ciaran@ciarang.com> | 2009-03-11 23:41:30 +0000 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2009-03-11 23:46:23 +0000 |
commit | c08e4d904ec80144379c5728e2274e3513e6c819 (patch) | |
tree | 082dfda16ba3049affaff02716b897d24feeba65 /actions/sup.php | |
parent | 70d5fc46845804507640e354c9d9e06367a53fb0 (diff) |
PostgreSQL - a few more query compatibility issues (submitted by oxygene)
Diffstat (limited to 'actions/sup.php')
-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 f4b1cda23..8ef9207fa 100644 --- a/actions/sup.php +++ b/actions/sup.php @@ -65,7 +65,9 @@ class SupAction extends Action $notice->query('SELECT profile_id, max(id) AS max_id ' . 'FROM notice ' . - 'WHERE created > (now() - ' . $seconds . ') ' . + ((common_config('db','type') == 'pgsql') ? + 'WHERE extract(epoch from created) > (extract(epoch from now()) - ' . $seconds . ') ' : + 'WHERE created > (now() - ' . $seconds . ') ' ) . 'GROUP BY profile_id'); $updates = array(); |