From 29cba6a8a5909250a392d211cc739e856df6c17d Mon Sep 17 00:00:00 2001 From: nathangray Date: Tue, 31 Jan 2017 09:16:03 -0700 Subject: [PATCH] Change import record type from abstract to calendar's record class. Since it will fail otherwise, no need to be general. (thanks, Scrutenizer) --- calendar/inc/class.calendar_import_csv.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/calendar/inc/class.calendar_import_csv.inc.php b/calendar/inc/class.calendar_import_csv.inc.php index c6374e9a39..991076a0fc 100644 --- a/calendar/inc/class.calendar_import_csv.inc.php +++ b/calendar/inc/class.calendar_import_csv.inc.php @@ -71,12 +71,12 @@ class calendar_import_csv extends importexport_basic_import_csv { * imports a single entry according to given definition object. * Handles the conditions and the actions taken. * - * @param importepport_iface_egw_record record The egw_record object being imported + * @param calendar_egw_record record The egw_record object being imported * @param importexport_iface_import_record import_csv Import object contains current state * * @return boolean success */ - public function import_record(\importexport_iface_egw_record &$record, &$import_csv) + public function import_record(\calendar_egw_record &$record, &$import_csv) { // set eventOwner $options =& $this->definition->plugin_options;