aboutsummaryrefslogtreecommitdiffstats
path: root/event.php
diff options
context:
space:
mode:
authorjwangen <jwangen>2002-10-09 19:40:02 +0000
committerjwangen <jwangen>2002-10-09 19:40:02 +0000
commit6c01da53c2e1714b80c796aced24d82698258fad (patch)
treeba7d18e2d0f3c5948411645b1169779531a5cfa1 /event.php
parentd00b2746b30e9fecdf038bd1cc05ba1545cf1105 (diff)
downloadphpicalendar-6c01da53c2e1714b80c796aced24d82698258fad.tar.gz
phpicalendar-6c01da53c2e1714b80c796aced24d82698258fad.tar.bz2
phpicalendar-6c01da53c2e1714b80c796aced24d82698258fad.zip
commented out in init where it required $getdate to come from HTTP_GET_VARS
Diffstat (limited to 'event.php')
-rw-r--r--event.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/event.php b/event.php
index bd5d648..a5fdcc8 100644
--- a/event.php
+++ b/event.php
@@ -29,15 +29,15 @@ if (isset($HTTP_GET_VARS['end']) && ($HTTP_GET_VARS['end'] !== '') ) {
$end = '';
}
-$event = urldecode($event);
+$event = rawurldecode($event);
$event = stripslashes($event);
$event = str_replace('\\', '', $event);
$event = htmlspecialchars($event);
-$description = urldecode($description);
+$description = rawurldecode($description);
$description = stripslashes($description);
$description = str_replace('\\', '', $description);
//$description = htmlspecialchars($description);
-$calendar_name2 = urldecode($calendar_name);
+$calendar_name2 = rawurldecode($calendar_name);
$calendar_name2 = stripslashes($calendar_name2);
$calendar_name2 = str_replace('\\', '', $calendar_name2);
//$calendar_name2 = htmlspecialchars($calendar_name2);

© 2014-2024 Faster IT GmbH | imprint | privacy policy