From f4dadfc2ef64a611ebb97d8e86f902ca98a94e42 Mon Sep 17 00:00:00 2001 From: Ingo Belka Date: Mon, 27 Mar 2006 04:56:11 +0000 Subject: [PATCH] ($CalStartMonday): new option, if set to 1 week starts with Mo instead of Su --- modules/calendar.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/calendar.pl b/modules/calendar.pl index aa4caeac..e2ced946 100644 --- a/modules/calendar.pl +++ b/modules/calendar.pl @@ -17,13 +17,13 @@ # 59 Temple Place, Suite 330 # Boston, MA 02111-1307 USA -$ModulesDescription .= '

$Id: calendar.pl,v 1.48 2006/03/27 04:54:18 ingob Exp $

'; +$ModulesDescription .= '

$Id: calendar.pl,v 1.49 2006/03/27 04:56:11 ingob Exp $

'; use vars qw($CalendarOnEveryPage $CalAsTable $CalStartMonday); $CalendarOnEveryPage = 0; # 1=on every page is a month-div situated in the header, use css to control -$CalAsTable = 1; # 0=every month-div is "free", 1=every month-div is caught in a table, use css to control -$CalStartMonday = 1; # 0=week starts with Su, 1=week starts with Mo +$CalAsTable = 0; # 0=every month-div is "free", 1=every month-div is caught in a table, use css to control +$CalStartMonday = 0; # 0=week starts with Su, 1=week starts with Mo *OldCalendarGetHeader = *GetHeader; *GetHeader = *NewCalendarGetHeader;