From a41ce9c9fecc9ce112e9343e391415a17ea1ff13 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 17 Jul 2018 08:24:19 -0400 Subject: [PATCH] default to exporting all event data --- web/skins/classic/views/export.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/skins/classic/views/export.php b/web/skins/classic/views/export.php index 63b8e9193..b390277ab 100644 --- a/web/skins/classic/views/export.php +++ b/web/skins/classic/views/export.php @@ -36,6 +36,12 @@ if ( isset($_SESSION['export']) ) { $_REQUEST['exportMisc'] = $_SESSION['export']['misc']; if ( isset($_SESSION['export']['format']) ) $_REQUEST['exportFormat'] = $_SESSION['export']['format']; +} else { + $_REQUEST['exportDetail'] = + $_REQUEST['exportFrames'] = + $_REQUEST['exportImages'] = + $_REQUEST['exportVideo'] = + $_REQUEST['exportMisc'] = 1; } $focusWindow = true;