diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-12-24 15:44:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-12-24 15:44:29 +0000 |
commit | ea873bc7e2ce75847295118d3b9bcf123ffb10d1 (patch) | |
tree | 8280b316b54fd719f030b02fda8fc34d44fbe25d /modules/calendar.module | |
parent | a097708987affd3ddb944136b1eba22b4685564f (diff) | |
download | brdo-ea873bc7e2ce75847295118d3b9bcf123ffb10d1.tar.gz brdo-ea873bc7e2ce75847295118d3b9bcf123ffb10d1.tar.bz2 |
- some improvements and code polishing
- added a few extra blocks to choose from
Diffstat (limited to 'modules/calendar.module')
-rw-r--r-- | modules/calendar.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/calendar.module b/modules/calendar.module index fe79beea5..0f4e2868c 100644 --- a/modules/calendar.module +++ b/modules/calendar.module @@ -5,13 +5,13 @@ $module = array("block" => "calendar_block"); function calendar_block() { global $date; - include "modules/calendar.class"; + include_once "modules/calendar.class"; $calendar = new Calendar($date); $block[0]["subject"] = "Browse archives"; $block[0]["content"] = $calendar->display(); - $block[0]["info"] = "calendar"; + $block[0]["info"] = "Calendar to browse archives"; return $block; } |