diff options
author | Evan Prodromou <evan@status.net> | 2010-04-12 10:11:18 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-04-28 18:41:27 -0400 |
commit | 1c40e7c139af98e4fe9c73093da4183ad8d9e234 (patch) | |
tree | cb8cb35d7c68c88deb82cf3a0a55944a788b8365 | |
parent | 816138a6f11ecf1ec44c261d660f8b2aafe49b21 (diff) |
better calculation for end date in notice sitemaps
-rw-r--r-- | plugins/Sitemap/noticesitemap.php | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/plugins/Sitemap/noticesitemap.php b/plugins/Sitemap/noticesitemap.php index 002408486..12a22dbb2 100644 --- a/plugins/Sitemap/noticesitemap.php +++ b/plugins/Sitemap/noticesitemap.php @@ -68,14 +68,21 @@ class NoticesitemapAction extends SitemapAction $this->notice = new Notice(); - $dt = sprintf('%04d-%02d-%02d', $y, $m, $d); + $begindt = sprintf('%04d-%02d-%02d 00:00:00', $y, $m, $d); - $this->notice->whereAdd("created > '$dt 00:00:00'"); - $this->notice->whereAdd("created <= '$dt 23:59:59'"); + // XXX: estimates 1d == 24h, which screws up days + // with leap seconds (1d == 24h + 1s). Thankfully they're + // few and far between. + + $enddt = common_sql_date(strtotime($begindt) + (24 * 60 * 60)); + + $this->notice->whereAdd("created >= '$begindt'"); + $this->notice->whereAdd("created < '$enddt'"); $this->notice->whereAdd('is_local != 0'); - $this->notice->orderBy('id'); + $this->notice->orderBy('created'); + $this->notice->limit($offset, $limit); $this->notice->find(); |