default to exporting all event data
This commit is contained in:
parent
05f0338219
commit
a41ce9c9fe
|
@ -36,6 +36,12 @@ if ( isset($_SESSION['export']) ) {
|
||||||
$_REQUEST['exportMisc'] = $_SESSION['export']['misc'];
|
$_REQUEST['exportMisc'] = $_SESSION['export']['misc'];
|
||||||
if ( isset($_SESSION['export']['format']) )
|
if ( isset($_SESSION['export']['format']) )
|
||||||
$_REQUEST['exportFormat'] = $_SESSION['export']['format'];
|
$_REQUEST['exportFormat'] = $_SESSION['export']['format'];
|
||||||
|
} else {
|
||||||
|
$_REQUEST['exportDetail'] =
|
||||||
|
$_REQUEST['exportFrames'] =
|
||||||
|
$_REQUEST['exportImages'] =
|
||||||
|
$_REQUEST['exportVideo'] =
|
||||||
|
$_REQUEST['exportMisc'] = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
$focusWindow = true;
|
$focusWindow = true;
|
||||||
|
|
Loading…
Reference in New Issue