summaryrefslogtreecommitdiff
path: root/modules/calendar.module
diff options
context:
space:
mode:
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;
}