mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 18:33:39 +01:00
Fix some bugs in drag to create event
- Firefox needed drag helper explicitly removed - bug in move exceptions caused SQL error
This commit is contained in:
parent
56866b8bce
commit
9968cae585
@ -613,6 +613,11 @@ class calendar_ui
|
||||
public function update_client($event_id, Api\DateTime $recurrence_date = null)
|
||||
{
|
||||
if(!$event_id) return false;
|
||||
if(is_string($event_id) && strpos($event_id,':') !== FALSE)
|
||||
{
|
||||
list($event_id, $date) = explode(':',$event_id);
|
||||
$recurrence_date = new Api\DateTime($date);
|
||||
}
|
||||
|
||||
// Directly update stored data.
|
||||
// Make sure we have the whole event
|
||||
|
Loading…
Reference in New Issue
Block a user