mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Calendar CSV import
- Handle end date before start date
This commit is contained in:
parent
d693871b0c
commit
b7da91b7dc
@ -98,6 +98,14 @@ class calendar_import_csv extends importexport_basic_import_csv {
|
||||
$record->owner = $options['owner'];
|
||||
}
|
||||
|
||||
// Handle errors in length or start/end date
|
||||
if($record->start > $record->end)
|
||||
{
|
||||
$record->end = $record->start + $GLOBALS['egw_info']['user']['preferences']['calendar']['defaultlength'] * 60;
|
||||
$this->warnings[$import_csv->get_current_position()] = lang('error: starttime has to be before the endtime !!!');
|
||||
}
|
||||
|
||||
// Parse particpants
|
||||
if ($record->participants && !is_array($record->participants)) {
|
||||
// Importing participants in human friendly format:
|
||||
// Name (quantity)? (status) Role[, Name (quantity)? (status) Role]+
|
||||
|
Loading…
Reference in New Issue
Block a user