mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-16 18:31:26 +01:00
* ImportExport: switch notifications off by default on import
This commit is contained in:
parent
ae72f4d481
commit
5f919ced72
@ -131,6 +131,11 @@ class calendar_import_ical implements importexport_iface_import_plugin {
|
||||
echo lang("No preview for iCal");
|
||||
return;
|
||||
}
|
||||
// switch off notifications by default
|
||||
if (!isset($_definition->plugin_options['no_notification']))
|
||||
{
|
||||
$_definition->plugin_options['no_notification'] = true;
|
||||
}
|
||||
if (!$calendar_ical->importVCal($_stream, -1,null,false,0,'',null,null,null,$_definition->plugin_options['no_notification']))
|
||||
{
|
||||
$this->errors[] = lang('Error: importing the iCal');
|
||||
|
@ -204,6 +204,7 @@
|
||||
$data['appname'] = $preserve['appname'] = $appname ? $appname : ($definition_obj ? $definition_obj->application : '');
|
||||
$data['definition'] = $definition;
|
||||
$data['delimiter'] = $definition_obj->plugin_options['delimiter'];
|
||||
$data['no_notifications'] = true; // switch notifications off by default
|
||||
|
||||
$sel_options = self::get_select_options($data);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user