From: <cl...@us...> - 2003-08-13 05:37:39
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv27111/includes Modified Files: event.php Log Message: Bug fixes, prepped for 0.9.3, added webcal as default support, fixed extra <BR> tags. Index: event.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** event.php 30 Jun 2003 22:37:52 -0000 1.7 --- event.php 13 Aug 2003 05:37:36 -0000 1.8 *************** *** 56,60 **** $event = stripslashes($event); $event = str_replace('\\', '', $event); - $event = htmlspecialchars($event); $description = rawurldecode($description); $description = stripslashes($description); --- 56,59 ---- *************** *** 71,79 **** $location = stripslashes($location); $location = str_replace('\\', '', $location); - //$description = htmlspecialchars($description); $calendar_name2 = rawurldecode($calendar_name); $calendar_name2 = stripslashes($calendar_name2); $calendar_name2 = str_replace('\\', '', $calendar_name2); - //$calendar_name2 = htmlspecialchars($calendar_name2); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" --- 70,76 ---- |