diff options
author | Georg Ehrke <georg.stefan.germany@googlemail.com> | 2011-10-01 20:36:20 +0200 |
---|---|---|
committer | Georg Ehrke <georg.stefan.germany@googlemail.com> | 2011-10-01 20:36:20 +0200 |
commit | 50007f2d40bd026bb43d1071d7be17632c62566c (patch) | |
tree | 46aeb85a70d12b4fb367b888c03b538b82ecc775 /apps/calendar | |
parent | a7431d99e5de84dca4e01b3480149fb175fd31b9 (diff) | |
download | nextcloud-server-50007f2d40bd026bb43d1071d7be17632c62566c.tar.gz nextcloud-server-50007f2d40bd026bb43d1071d7be17632c62566c.zip |
removed bug, that you can't change time in week view, when event was an allday event
Diffstat (limited to 'apps/calendar')
-rw-r--r-- | apps/calendar/ajax/moveevent.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/calendar/ajax/moveevent.php b/apps/calendar/ajax/moveevent.php index 725894ab43c..6e87b64a1c7 100644 --- a/apps/calendar/ajax/moveevent.php +++ b/apps/calendar/ajax/moveevent.php @@ -69,6 +69,8 @@ if(strlen($newdate) > 10){ if($newdatestringarray[1] == "allday"){ $allday = true; $newdatestringarray[1] = "00:00"; + }else{ + $allday = false; } }else{ $newdatestringarray = array(); |