summaryrefslogtreecommitdiff
path: root/modules/archive.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-12-28 18:47:44 +0000
committerDries Buytaert <dries@buytaert.net>2004-12-28 18:47:44 +0000
commitf4dfafe860cc9cb2d0356676dba4f20987e2dd22 (patch)
treed19a17a930351e967ac92919b4551fc4b471ba7f /modules/archive.module
parent0fb0a93965879025c03b4270ccb03ba608db8dff (diff)
downloadbrdo-f4dfafe860cc9cb2d0356676dba4f20987e2dd22.tar.gz
brdo-f4dfafe860cc9cb2d0356676dba4f20987e2dd22.tar.bz2
- Patch #14852 by Goba: show the number of posts at each day.
Diffstat (limited to 'modules/archive.module')
-rw-r--r--modules/archive.module13
1 files changed, 9 insertions, 4 deletions
diff --git a/modules/archive.module b/modules/archive.module
index c2bde631b..893a4b698 100644
--- a/modules/archive.module
+++ b/modules/archive.module
@@ -76,9 +76,14 @@ function archive_calendar($original = 0) {
$days_with_posts = array();
while ($day_with_post = db_fetch_object($result)) {
- $days_with_posts[] = date('j', $day_with_post->created + $user->timezone);
+ $daynum = date('j', $day_with_post->created + $user->timezone);
+ if (isset($days_with_posts[$daynum])) {
+ $days_with_posts[$daynum]++;
+ }
+ else {
+ $days_with_posts[$daynum] = 1;
+ }
}
- $days_with_posts = array_unique($days_with_posts);
// Generate calendar header:
$output .= "\n<!-- calendar -->\n";
@@ -125,8 +130,8 @@ function archive_calendar($original = 0) {
// Print one cell:
$date = mktime(0, 0, 0, $month, $nday, $year) + $user->timezone;
- if (in_array($nday, $days_with_posts)) {
- $daytext = l($nday, "archive/$year/$month/$nday");
+ if (isset($days_with_posts[$nday])) {
+ $daytext = l($nday, "archive/$year/$month/$nday", array("title" => format_plural($days_with_posts[$nday], "1 post", "%count posts")));
$dayclass = 'day-link';
}
else {