From 7cb54d3147e612b3b3fcf5cb241cf0201af9398c Mon Sep 17 00:00:00 2001 From: jeiseman Date: Thu, 30 Nov 2023 10:33:05 -0500 Subject: [PATCH] Update class.EM_ImpExpExport.php Export all events (not just future events) --- includes/class.EM_ImpExpExport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class.EM_ImpExpExport.php b/includes/class.EM_ImpExpExport.php index dd5d1ae..03ce532 100644 --- a/includes/class.EM_ImpExpExport.php +++ b/includes/class.EM_ImpExpExport.php @@ -26,7 +26,7 @@ public function render() { * export the data in selected format */ public function export() { - $EM_Events = EM_Events::get(); + $EM_Events = EM_Events::get(array('scope' => 'all')); $format = isset($_POST['exp_format']) ? wp_unslash($_POST['exp_format']) : '';