2012-04-17 Vanessa Gil <vanessa.gil@artica.es>
* godmode/reporting/reporting_builder.item_editor.php: Fixed bug: In the item list of a report appears a wrong period. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5994 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
|
@ -1,3 +1,8 @@
|
|||
2012-04-17 Vanessa Gil <vanessa.gil@artica.es>
|
||||
|
||||
* godmode/reporting/reporting_builder.item_editor.php: Fixed
|
||||
bug: In the item list of a report appears a wrong period.
|
||||
|
||||
2012-04-17 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/functions.php: Stripped # character in a
|
||||
|
|
Before Width: | Height: | Size: 216 B |
Before Width: | Height: | Size: 196 B |
Before Width: | Height: | Size: 191 B |
Before Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 189 B |
Before Width: | Height: | Size: 193 B |
Before Width: | Height: | Size: 189 B |
Before Width: | Height: | Size: 172 B |
Before Width: | Height: | Size: 221 B |
Before Width: | Height: | Size: 211 B |
Before Width: | Height: | Size: 190 B |
Before Width: | Height: | Size: 185 B |
|
@ -207,21 +207,25 @@ switch ($action) {
|
|||
$sql = $item['external_source'];
|
||||
$idCustom = $item['treport_custom_sql_id'];
|
||||
$header = $item['header_definition'];
|
||||
$period = 0;
|
||||
break;
|
||||
case 'sql_graph_pie':
|
||||
$description = $item['description'];
|
||||
$sql = $item['external_source'];
|
||||
$idCustom = $item['treport_custom_sql_id'];
|
||||
$period = 0;
|
||||
break;
|
||||
case 'sql_graph_vbar':
|
||||
$description = $item['description'];
|
||||
$sql = $item['external_source'];
|
||||
$idCustom = $item['treport_custom_sql_id'];
|
||||
$period = 0;
|
||||
break;
|
||||
case 'sql_graph_hbar':
|
||||
$description = $item['description'];
|
||||
$sql = $item['external_source'];
|
||||
$idCustom = $item['treport_custom_sql_id'];
|
||||
$period = 0;
|
||||
break;
|
||||
case 'url':
|
||||
$description = $item['description'];
|
||||
|
|