diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-30 18:34:02 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-30 18:34:02 +0000 |
commit | 74d9266b3f2e0480c8efe7b938d2d213ecca3f19 (patch) | |
tree | c24d63906df1bcbbb4d373023ce3f4360b5710c9 /modules/archive/archive.module | |
parent | da80e6204252b78c3cbe380df54c056df438a1d0 (diff) | |
download | brdo-74d9266b3f2e0480c8efe7b938d2d213ecca3f19.tar.gz brdo-74d9266b3f2e0480c8efe7b938d2d213ecca3f19.tar.bz2 |
- Bugfix: fixed calendar block caching. Patch by Al. Fixes bug #2131.
- Improvement: improved the block module documentation. Patch #59 by
Gerhard.
Diffstat (limited to 'modules/archive/archive.module')
-rw-r--r-- | modules/archive/archive.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/archive/archive.module b/modules/archive/archive.module index b69d4feb1..c29546da3 100644 --- a/modules/archive/archive.module +++ b/modules/archive/archive.module @@ -150,7 +150,7 @@ function archive_calendar($original = 0) { $output .= "</table></div>\n\n"; - cache_set("archive:calendar:$first", $output, time() + variable_get("cache_clear", 120)); + cache_set("archive:calendar:$start_of_month", $output, time() + variable_get("cache_clear", 120)); return $output; } |