Return export object

This commit is contained in:
Nathan Gray 2012-04-18 18:00:21 +00:00
parent 335c025e68
commit e5fd49940f
3 changed files with 3 additions and 0 deletions

View File

@ -214,6 +214,7 @@ class addressbook_export_contacts_csv implements importexport_iface_export_plugi
$export_object->export_record($contact);
unset($contact);
}
return $export_object;
}
/**

View File

@ -142,6 +142,7 @@ class calendar_export_csv implements importexport_iface_export_plugin {
}
}
unset($record);
return $export_object;
}
/**

View File

@ -67,6 +67,7 @@ class timesheet_export_csv implements importexport_iface_export_plugin {
$export_object->export_record($record);
unset($record);
}
return $export_object;
}
/**