summaryrefslogtreecommitdiff
path: root/modules/calendar.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2000-12-24 15:44:29 +0000
committerDries Buytaert <dries@buytaert.net>2000-12-24 15:44:29 +0000
commitea873bc7e2ce75847295118d3b9bcf123ffb10d1 (patch)
tree8280b316b54fd719f030b02fda8fc34d44fbe25d /modules/calendar.module
parenta097708987affd3ddb944136b1eba22b4685564f (diff)
downloadbrdo-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.module4
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;
}