diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 702c3d23db..fa1fabd275 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-01-30 Sergio Martin + + * godmode/events/event_responses.editor.php: Little fix + in a tooltip + 2013-01-30 Sergio Martin * include/functions_ui.php: Fixed help popups to diff --git a/pandora_console/godmode/events/event_responses.editor.php b/pandora_console/godmode/events/event_responses.editor.php index 8d60d8d002..17326e8e31 100644 --- a/pandora_console/godmode/events/event_responses.editor.php +++ b/pandora_console/godmode/events/event_responses.editor.php @@ -69,7 +69,7 @@ $data[1] = html_print_textarea('description',5,40,$event_response['description'] $table->data[1] = $data; $data = array(); -$data[0] = __('Location') . ui_print_help_tip(__('In Command mode is enforced to Modal window'), true); +$data[0] = __('Location') . ui_print_help_tip(__('For Command type Modal Window mode is enforced'), true); $locations = array(__('Modal window'), __('New window')); $data[1] = html_print_select($locations,'new_window',$event_response['new_window'],'','','',true);