diff --git a/admin/reports.inc.php b/admin/reports.inc.php index d3445fc6..a8de88ad 100644 --- a/admin/reports.inc.php +++ b/admin/reports.inc.php @@ -242,6 +242,7 @@ foreach($stock as $n=>$v) { function report_gen_by_id($report_id, $format=NULL) { + global $options; $report = report_load($report_id); if($format != NULL) { $keys = array_keys($options['type']['values']); diff --git a/admin/reports_gen.php b/admin/reports_gen.php index 1668df99..5cd7ea28 100644 --- a/admin/reports_gen.php +++ b/admin/reports_gen.php @@ -29,7 +29,7 @@ require_once('reports.inc.php'); $id = intval($_GET['id']); - $format = stripslashes($_GET['format']); + $format = stripslashes($_GET['type']); if($format == '') $format = NULL;