2011-03-30 Javier Lanz <javier.lanz@artica.es>

* include/functions_reporting.php: Fixed a small problem passing 'width'
	parameter in 'top_n' reports


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4148 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
javilanz 2011-03-30 15:22:02 +00:00
parent 4cedad83cd
commit f9568eb929
2 changed files with 6 additions and 1 deletions
pandora_console

@ -1,3 +1,8 @@
2011-03-30 Javier Lanz <javier.lanz@artica.es>
* include/functions_reporting.php: Fixed a small problem passing 'width'
parameter in 'top_n' reports
2011-03-30 Javier Lanz <javier.lanz@artica.es>
* include/functions_reporting.php: Fixed a small problem when displaying
only the graph and not the table for the exception report.

@ -2987,7 +2987,7 @@ function render_report_html_item ($content, $table, $report, $mini = false) {
$height = count($data_pie_graph)*20+35;
$data = array();
$data[0] = "<img src='include/fgraph.php?tipo=generic_horizontal_bar_graph&array=".$data_graph.
"&height=".$height."width=600'>";
"&height=".$height."&width=600'>";
array_push ($table->data, $data);
}