summaryrefslogtreecommitdiffstats
path: root/apps/calendar/lib
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-06-20 20:14:03 +0200
committerGeorg Ehrke <dev@georgswebsite.de>2012-06-20 20:14:03 +0200
commitc1d205cbf53f0844bbfe734ea9213761de5f99f1 (patch)
treeb2ca3608a32fffcf5edbc634dc895e2266ac3539 /apps/calendar/lib
parent27c995230cbc3305bc2a871b13c54a4f4ff68bf6 (diff)
parentf255ac8b3a82bcf9e77c3bc0db7583d1492df44c (diff)
downloadnextcloud-server-c1d205cbf53f0844bbfe734ea9213761de5f99f1.tar.gz
nextcloud-server-c1d205cbf53f0844bbfe734ea9213761de5f99f1.zip
Merge branch 'master' into calendar_export
Diffstat (limited to 'apps/calendar/lib')
-rw-r--r--apps/calendar/lib/object.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/calendar/lib/object.php b/apps/calendar/lib/object.php
index 9e4806227b0..4212bf5a32c 100644
--- a/apps/calendar/lib/object.php
+++ b/apps/calendar/lib/object.php
@@ -600,8 +600,8 @@ class OC_Calendar_Object{
public static function updateVCalendarFromRequest($request, $vcalendar)
{
- $title = strip_tags($request["title"]);
- $location = strip_tags($request["location"]);
+ $title = $request["title"];
+ $location = $request["location"];
$categories = $request["categories"];
$allday = isset($request["allday"]);
$from = $request["from"];
@@ -611,7 +611,7 @@ class OC_Calendar_Object{
$totime = $request['totime'];
}
$vevent = $vcalendar->VEVENT;
- $description = strip_tags($request["description"]);
+ $description = $request["description"];
$repeat = $request["repeat"];
if($repeat != 'doesnotrepeat'){
$rrule = '';