aboutsummaryrefslogtreecommitdiffstats
path: root/includes
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2003-02-15 20:07:08 +0000
committerChad Little <clittle@users.sourceforge.net>2003-02-15 20:07:08 +0000
commitdb5981c2ad6a44f90c36efb6ac0296ab2c675935 (patch)
tree1f0862ff5195b85a71258bedf5ce10df3ee4f460 /includes
parent498d423eee0cb2ae7664a46bfa198aee1a17e996 (diff)
downloadphpicalendar-db5981c2ad6a44f90c36efb6ac0296ab2c675935.tar.gz
phpicalendar-db5981c2ad6a44f90c36efb6ac0296ab2c675935.tar.bz2
phpicalendar-db5981c2ad6a44f90c36efb6ac0296ab2c675935.zip
Fixed a bug with Irix and isset().
Diffstat (limited to 'includes')
-rw-r--r--includes/event.php2
1 files changed, 1 insertions, 1 deletions
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);
<table width="430" border="0" cellspacing="0" cellpadding="0">
<?php
if (($start) && ($end)) $event_times = ' - <font class="V9">(<i>'.$start.' - '.$end.'</i>)</font>';
- if ($start == '' && $end == '' && isset($start, $end)) $event_times = ' - <font class="V9">(<i>'.$all_day_lang.'</i>)</font>';
+ if ($start == '' && $end == '' && (isset($start) && isset($end))) $event_times = ' - <font class="V9">(<i>'.$all_day_lang.'</i>)</font>';
?>
<tr>
<td width="1%"><img src="images/spacer.gif" width="6" height="1" alt=" "></td>

© 2014-2024 Faster IT GmbH | imprint | privacy policy