diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 92bac19ed7..848fca889a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2012-04-17 Vanessa Gil + + * 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 * include/functions.php: Stripped # character in a diff --git a/pandora_console/extensions/tree/branch.png b/pandora_console/extensions/tree/branch.png deleted file mode 100644 index dac28141c7..0000000000 Binary files a/pandora_console/extensions/tree/branch.png and /dev/null differ diff --git a/pandora_console/extensions/tree/closed.png b/pandora_console/extensions/tree/closed.png deleted file mode 100644 index a0beb9bfd9..0000000000 Binary files a/pandora_console/extensions/tree/closed.png and /dev/null differ diff --git a/pandora_console/extensions/tree/expanded.png b/pandora_console/extensions/tree/expanded.png deleted file mode 100644 index a5249e42b4..0000000000 Binary files a/pandora_console/extensions/tree/expanded.png and /dev/null differ diff --git a/pandora_console/extensions/tree/first_closed.png b/pandora_console/extensions/tree/first_closed.png deleted file mode 100644 index 7a3673c7c2..0000000000 Binary files a/pandora_console/extensions/tree/first_closed.png and /dev/null differ diff --git a/pandora_console/extensions/tree/first_expanded.png b/pandora_console/extensions/tree/first_expanded.png deleted file mode 100644 index ef8d30aaa0..0000000000 Binary files a/pandora_console/extensions/tree/first_expanded.png and /dev/null differ diff --git a/pandora_console/extensions/tree/last_closed.png b/pandora_console/extensions/tree/last_closed.png deleted file mode 100644 index 4e07936700..0000000000 Binary files a/pandora_console/extensions/tree/last_closed.png and /dev/null differ diff --git a/pandora_console/extensions/tree/last_expanded.png b/pandora_console/extensions/tree/last_expanded.png deleted file mode 100644 index 8411630167..0000000000 Binary files a/pandora_console/extensions/tree/last_expanded.png and /dev/null differ diff --git a/pandora_console/extensions/tree/last_leaf.png b/pandora_console/extensions/tree/last_leaf.png deleted file mode 100644 index 5e75cc5343..0000000000 Binary files a/pandora_console/extensions/tree/last_leaf.png and /dev/null differ diff --git a/pandora_console/extensions/tree/leaf.png b/pandora_console/extensions/tree/leaf.png deleted file mode 100644 index 52ffb066cb..0000000000 Binary files a/pandora_console/extensions/tree/leaf.png and /dev/null differ diff --git a/pandora_console/extensions/tree/no_branch.png b/pandora_console/extensions/tree/no_branch.png deleted file mode 100644 index 8e97d8b10a..0000000000 Binary files a/pandora_console/extensions/tree/no_branch.png and /dev/null differ diff --git a/pandora_console/extensions/tree/one_closed.png b/pandora_console/extensions/tree/one_closed.png deleted file mode 100755 index db9d336b17..0000000000 Binary files a/pandora_console/extensions/tree/one_closed.png and /dev/null differ diff --git a/pandora_console/extensions/tree/one_expanded.png b/pandora_console/extensions/tree/one_expanded.png deleted file mode 100755 index 577c4bf6ce..0000000000 Binary files a/pandora_console/extensions/tree/one_expanded.png and /dev/null differ diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 38be739b2d..201447484a 100644 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -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'];