* Calendar - Fix CSV export search results did not work (gave error)

This commit is contained in:
nathangray 2018-08-14 10:04:16 -06:00
parent e433c708df
commit 8f7cf3541b

View File

@ -92,6 +92,8 @@ class calendar_export_csv implements importexport_iface_export_plugin {
$ui->get_rows($query, $events, $unused); $ui->get_rows($query, $events, $unused);
} }
// Filter out extra things like sel_options
unset($events['sel_options']);
break; break;
case 'filter': case 'filter':
$fields = importexport_helper_functions::get_filter_fields($_definition->application, $this); $fields = importexport_helper_functions::get_filter_fields($_definition->application, $this);