From: <ji...@us...> - 2005-12-07 07:26:22
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15390/phpicalendar/includes Modified Files: event.php Log Message: bug fixes for event.php and others Index: event.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** event.php 11 Nov 2005 01:30:11 -0000 1.35 --- event.php 7 Dec 2005 07:26:14 -0000 1.36 *************** *** 51,55 **** if ($event['location']) { ! if ($event['url'] != '') $event['location'] = '<a href="'.$event['url'].'" target="_blank">'.$event['location'].'</a>'; } --- 51,57 ---- if ($event['location']) { ! if ($event['url'] != '') $event['location'] = '<a href="'.$event['url'].'" target="_blank">'.stripslashes($event['location']).'</a>'; ! }else{ ! $event['location'] = stripslashes($event['location']); } |