diff --git a/Modules/Internal/Services/MemberEnrollmentService.php b/Modules/Internal/Services/MemberEnrollmentService.php index 4aa24464..177ad4cc 100644 --- a/Modules/Internal/Services/MemberEnrollmentService.php +++ b/Modules/Internal/Services/MemberEnrollmentService.php @@ -344,10 +344,12 @@ class MemberEnrollmentService if (strtotime($date_from_row)){ return date('Y-m-d', strtotime($date_from_row)); } else { - throw new ImportRowException(__('Format Date Invalid'), 0, null, $row); + // throw new ImportRowException(__('Format Date Invalid'), 0, null, $date_from_row); + return null; } } else { - throw new ImportRowException(__('Format Date Invalid'), 0, null, $row); + // throw new ImportRowException(__('Format Date Invalid'), 0, null, $date_from_row); + return null; } }