mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-09 07:28:14 +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)
|
public function update_client($event_id, Api\DateTime $recurrence_date = null)
|
||||||
{
|
{
|
||||||
if(!$event_id) return false;
|
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.
|
// Directly update stored data.
|
||||||
// Make sure we have the whole event
|
// Make sure we have the whole event
|
||||||
|
Loading…
Reference in New Issue
Block a user