diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 2913882348..1ca14b4f2a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-06-08 Miguel de Dios + + * godmode/reporting/reporting_builder.main.php: changed the text of button + for more clear mean. + 2010-06-08 Miguel de Dios * DEBIAN/conffiles: re-changed the conffiles for try solved a bug in the diff --git a/pandora_console/godmode/reporting/reporting_builder.main.php b/pandora_console/godmode/reporting/reporting_builder.main.php index 58aa79a1c0..ed438f59d6 100644 --- a/pandora_console/godmode/reporting/reporting_builder.main.php +++ b/pandora_console/godmode/reporting/reporting_builder.main.php @@ -27,12 +27,12 @@ $groups = get_user_groups (); switch ($action) { case 'new': - $actionButtonHtml = print_submit_button(__('Add'), 'add', false, 'class="sub wand"', true); + $actionButtonHtml = print_submit_button(__('Save'), 'add', false, 'class="sub wand"', true); $hiddenFieldAction = 'save'; break; case 'update': case 'edit': - $actionButtonHtml = print_submit_button(__('Edit'), 'edit', false, 'class="sub upd"', true); + $actionButtonHtml = print_submit_button(__('Update'), 'edit', false, 'class="sub upd"', true); $hiddenFieldAction = 'update'; break; }