Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Ehrke <georg.stefan.germany@googlemail.com>2011-10-01 22:36:20 +0400
committerGeorg Ehrke <georg.stefan.germany@googlemail.com>2011-10-01 22:36:20 +0400
commit50007f2d40bd026bb43d1071d7be17632c62566c (patch)
tree46aeb85a70d12b4fb367b888c03b538b82ecc775 /apps/calendar
parenta7431d99e5de84dca4e01b3480149fb175fd31b9 (diff)
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.php2
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();