fix errors when no filter specified

This commit is contained in:
Isaac Connor 2019-04-09 09:45:28 -04:00
parent 5ad9219609
commit 37b7c32465
1 changed files with 25 additions and 24 deletions

View File

@ -59,6 +59,7 @@ include('_monitor_filters.php');
$filter_bar = ob_get_contents();
ob_end_clean();
$filter = array();
if ( isset($_REQUEST['filter']) ) {
$filter = $_REQUEST['filter'];
} else {
@ -86,7 +87,7 @@ if ( isset($_REQUEST['filter']) ) {
}
}
}
} # end if REQUEST[Filter]
} # end if REQUEST[Filter]
parseFilter($filter);
# This is to enable the download button
session_start();