From fbfd8475dedda151024d19d23f4d3c16a1757d0c Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 15 Apr 2020 16:17:45 +0200 Subject: [PATCH] Fix #3264 --- app/Support/Export/ExportDataGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/Export/ExportDataGenerator.php b/app/Support/Export/ExportDataGenerator.php index 8f2cebe4df..d69e4eea4d 100644 --- a/app/Support/Export/ExportDataGenerator.php +++ b/app/Support/Export/ExportDataGenerator.php @@ -557,7 +557,7 @@ class ExportDataGenerator $recurrence->description, $recurrence->first_date ? $recurrence->first_date->format('Y-m-d') : null, $recurrence->repeat_until ? $recurrence->repeat_until->format('Y-m-d') : null, - $recurrence->latest_date ? $recurrence->repeat_until->format('Y-m-d') : null, + $recurrence->latest_date ? $recurrence->latest_date->format('Y-m-d') : null, $recurrence->repetitions, $recurrence->apply_rules, $recurrence->active,