diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index 85f37c198e..b95ddb9983 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,15 @@
+2013-04-12 Mario Pulido Users have assigned a level of access for the Wizard of metaconsole. This level can be Basic or Advanced.
+
'.__('Inverse interval').'';
$table->data[3][1] .= html_print_checkbox ("warning_inverse", 1, $warning_inverse, true);
-$table->data[3][2] = __('Critical status');
+$table->data[3][2] = __('Critical status'). ' ' . ui_print_help_icon ('critical_status', true);
$table->data[3][3] = ''.__('Min.').' ';
$table->data[3][3] .= html_print_input_text ('min_critical', $min_critical,
'', 5, 15, true);
@@ -129,16 +129,16 @@ $table->data[3][3] .= html_print_input_text ('str_critical', $str_critical,
$table->data[3][3] .= '
'.__('Inverse interval').'';
$table->data[3][3] .= html_print_checkbox ("critical_inverse", 1, $critical_inverse, true);
-$table->data[4][0] = __('FF threshold') . ' ' . ui_print_help_icon ('ff_threshold', true, ui_get_full_url(false, false, false, false));
+$table->data[4][0] = __('FF threshold') . ' ' . ui_print_help_icon ('ff_threshold', true);
$table->data[4][1] = html_print_input_text ('ff_event', $ff_event,
'', 5, 15, true);
$table->data[4][2] = __('Historical data');
$table->data[4][3] = html_print_checkbox ("history_data", 1, $history_data, true);
$table->data[5][0] = __('Min. Value');
-$table->data[5][1] = html_print_input_text ('min', $min, '', 5, 15, true);
+$table->data[5][1] = html_print_input_text ('min', $min, '', 5, 15, true). ' ' . ui_print_help_tip (__('Any value below this number is discarted'), true);
$table->data[5][2] = __('Max. Value');
-$table->data[5][3] = html_print_input_text ('max', $max, '', 5, 15, true);
+$table->data[5][3] = html_print_input_text ('max', $max, '', 5, 15, true) . ' ' . ui_print_help_tip (__('Any value over this number is discarted'), true);
$table->data[6][0] = __('Unit');
$table->data[6][1] = html_print_input_text ('unit', $unit, '', 12, 25, true);
$table->data[6][2] = $table->data[6][3] = '';
diff --git a/pandora_console/godmode/modules/manage_network_components_form_network.php b/pandora_console/godmode/modules/manage_network_components_form_network.php
index c1544e6043..84c0869ed6 100644
--- a/pandora_console/godmode/modules/manage_network_components_form_network.php
+++ b/pandora_console/godmode/modules/manage_network_components_form_network.php
@@ -77,7 +77,7 @@ $data[3] = html_print_select(array('noAuthNoPriv' => __('Not auth and not privac
push_table_row($data, 'field_snmpv3_row3');
$data = array();
-$data[0] = __('Post process') . ' ' . ui_print_help_icon ('postprocess', true, ui_get_full_url(false, false, false, false));
+$data[0] = __('Post process') . ' ' . ui_print_help_icon ('postprocess', true );
$data[1] = html_print_input_text ('post_process', $post_process, '', 12, 25, true);
$data[2] = $data[3] = '';
push_table_row($data, 'field_process');
@@ -86,7 +86,7 @@ push_table_row($data, 'field_process');
/* Advanced stuff */
$data = array ();
-$data[0] = __('TCP send') . ' ' . ui_print_help_icon ("tcp_send", true, ui_get_full_url(false, false, false, false));
+$data[0] = __('TCP send') . ' ' . ui_print_help_icon ("tcp_send", true);
$data[1] = html_print_textarea ('tcp_send', 2, 65, $tcp_send, '', true);
$table->colspan['tcp_send'][1] = 3;
diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php
index 1b78eb0fa7..8054feac04 100644
--- a/pandora_console/godmode/users/configure_user.php
+++ b/pandora_console/godmode/users/configure_user.php
@@ -462,7 +462,7 @@ if (enterprise_installed() && defined('METACONSOLE')) {
if (isset($user_info["metaconsole_access"])) {
$user_info_metaconsole_access = $user_info["metaconsole_access"];
}
- $table->data[12][0] = __('Metaconsole access');
+ $table->data[12][0] = __('Metaconsole access'). ' ' .ui_print_help_icon ('meta_access', true);
$metaconsole_accesses = array('basic' => __('Basic'),
'advanced' => __('Advanced'));
$table->data[12][1] = html_print_select($metaconsole_accesses,
diff --git a/pandora_console/include/help/en/help_meta_access.php b/pandora_console/include/help/en/help_meta_access.php
new file mode 100644
index 0000000000..0129af6377
--- /dev/null
+++ b/pandora_console/include/help/en/help_meta_access.php
@@ -0,0 +1,14 @@
+
+
+
+
+
Los usuarios tienen asignado un un nivel de acceso respecto al Wizard de la Metaconsola. Este nivel puede ser Básico o Avanzado. +