From 19cac1259321933ee407ed6b077ef3d2aa9e9e58 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Wed, 19 Nov 2003 07:54:09 +0000 Subject: Checked in a new popup system. Also added calname to calendar for popup reference. --- week.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'week.php') diff --git a/week.php b/week.php index 488d707..81dbf76 100644 --- a/week.php +++ b/week.php @@ -163,10 +163,11 @@ include (BASE.'includes/header.inc.php'); foreach($master_array[($thisday)]["-1"] as $allday) { echo "\n"; $event_calno = $allday['calnumber']; + $event_calna = $allday['calname']; if ($event_calno < 1) $event_calno=1; if ($event_calno > 7) $event_calno=7; echo ''; - openevent("$calendar_name", + openevent("$event_calna", "", "", $allday, @@ -306,9 +307,9 @@ include (BASE.'includes/header.inc.php'); $event_end = $this_time_arr[($event_length[$thisday][$i]["key"])]["end_unixtime"]; if (isset($this_time_arr[($event_length[$thisday][$i]["key"])]['display_end'])) $event_end = strtotime ($this_time_arr[($event_length[$thisday][$i]["key"])]['display_end']); $event_end = date ($timeFormat, $event_end); - // Todo: keep track of where the event comes from, and indicate that to openevent instead of $ALL_CALENDARS_COMBINED - if ($cal == $ALL_CALENDARS_COMBINED) $calendar_name2=$cal; else $calendar_name2=$calendar_name; - openevent("$calendar_name2", + + $event_calna = $this_time_arr[($event_length[$thisday][$i]["key"])]['calname']; + openevent("$event_calna", "$event_start", "$event_end", $this_time_arr[($event_length[$thisday][$i]["key"])], -- cgit v1.2.3