Update of /cvsroot/phpicalendar/phpicalendar/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15972/includes
Modified Files:
event.php
Log Message:
Minor cosmetics.
Index: event.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/includes/event.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** event.php 13 Sep 2005 21:36:38 -0000 1.33
--- event.php 13 Sep 2005 21:57:28 -0000 1.34
***************
*** 26,30 ****
}
! $event['description'] = urldecode($event['description']);
if ($event['description']) $event['description'] = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",'<a target="_new" href="\0">\0</a>',$event['description']);
--- 26,31 ----
}
! $event['description'] = urldecode(stripslashes($event['description']));
! $event['event_text'] = urldecode(stripslashes($event['event_text']));
if ($event['description']) $event['description'] = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]",'<a target="_new" href="\0">\0</a>',$event['description']);
***************
*** 66,72 ****
'charset' => $charset,
'cal' => $event['calname'],
! 'event_text' => urldecode($event['event_text']),
'event_times' => $event_times,
! 'description' => urldecode($event['description']),
'organizer' => $organizer,
'attendee' => $attendee,
--- 67,73 ----
'charset' => $charset,
'cal' => $event['calname'],
! 'event_text' => $event['event_text'],
'event_times' => $event_times,
! 'description' => $event['description'],
'organizer' => $organizer,
'attendee' => $attendee,
|