From db5981c2ad6a44f90c36efb6ac0296ab2c675935 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Sat, 15 Feb 2003 20:07:08 +0000 Subject: Fixed a bug with Irix and isset(). --- includes/event.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/event.php b/includes/event.php index 3d95c0a..7a685fa 100644 --- a/includes/event.php +++ b/includes/event.php @@ -65,7 +65,7 @@ $calendar_name2 = str_replace('\\', '', $calendar_name2); ('.$start.' - '.$end.')'; - if ($start == '' && $end == '' && isset($start, $end)) $event_times = ' - ('.$all_day_lang.')'; + if ($start == '' && $end == '' && (isset($start) && isset($end))) $event_times = ' - ('.$all_day_lang.')'; ?> -- cgit v1.2.3