Update of /cvsroot/phpicalendar/phpicalendar/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv15265/includes
Modified Files:
event.php
Log Message:
Updated to not hyperlink url if not present.
Index: event.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** event.php 22 Nov 2003 19:29:46 -0000 1.18
--- event.php 23 Nov 2003 17:56:27 -0000 1.19
***************
*** 59,63 ****
}
if ($location) {
! if (isset($url)) $location = '<a href="'.$url.'" target="_blank">'.$location.'</a>';
$display .= $location_lang . ' - ' . $location.'<br>';
}
--- 59,63 ----
}
if ($location) {
! if ($url != '') $location = '<a href="'.$url.'" target="_blank">'.$location.'</a>';
$display .= $location_lang . ' - ' . $location.'<br>';
}
|