Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29604/functions
Modified Files:
template.php
Log Message:
Removing slashes from todo descriptions so that things like semicolons display
correctly.
Index: template.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/template.php,v
retrieving revision 1.61
retrieving revision 1.62
diff -C2 -d -r1.61 -r1.62
*** template.php 30 Oct 2004 01:06:26 -0000 1.61
--- template.php 29 Nov 2004 23:36:37 -0000 1.62
***************
*** 642,646 ****
if ($vtodo_text != "") {
if (isset($val["description"])) {
! $description = urldecode($val["description"]);
} else {
$description = "";
--- 642,646 ----
if ($vtodo_text != "") {
if (isset($val["description"])) {
! $description = stripslashes(urldecode($val["description"]));
} else {
$description = "";
|