diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 402ab64ce4..6786dd1fc5 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,11 @@ +2009-09-04 Raul Mateos + + * include/config_process.php: Update build after last changes. + + * godmode/modules/manage_nc_groups*.php, + godmode/modules/manage_network_components_form*.php: Unify titles + improving integrity of appearance. + 2009-09-04 Miguel de Dios * images/status_sets/default/module_warning_ball.png, diff --git a/pandora_console/godmode/modules/manage_nc_groups.php b/pandora_console/godmode/modules/manage_nc_groups.php index 3bb4ebc470..7faee76857 100644 --- a/pandora_console/godmode/modules/manage_nc_groups.php +++ b/pandora_console/godmode/modules/manage_nc_groups.php @@ -86,7 +86,7 @@ $table->width = '90%'; $table->head = array (); $table->head[0] = __('Name'); $table->head[1] = __('Parent'); -$table->head[2] = ''; +$table->head[2] = __('Action'); $table->style = array (); $table->style[0] = 'font-weight: bold'; $table->align = array (); diff --git a/pandora_console/godmode/modules/manage_nc_groups_form.php b/pandora_console/godmode/modules/manage_nc_groups_form.php index dfb5a76807..3d697d95dd 100644 --- a/pandora_console/godmode/modules/manage_nc_groups_form.php +++ b/pandora_console/godmode/modules/manage_nc_groups_form.php @@ -38,7 +38,7 @@ if ($id) { $parent = ''; } -echo '

'.__('Component group management').'

'; +echo '

'.__('Module management').' » '. __('Component group management').'

'; $table->width = '50%'; $table->style = array (); 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 6e54a26624..aeb6e95093 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_network.php +++ b/pandora_console/godmode/modules/manage_network_components_form_network.php @@ -29,8 +29,9 @@ if (! $id) { $snmp_community = "public"; } -echo "

".__('Module component management')."

"; -echo "

".__('Network component')."

"; +echo "

".__('Module management')." » "; +echo __('Module component management')."

"; +echo "

".__('Network component')."

"; $data = array (); $data[0] = _('Port'); diff --git a/pandora_console/godmode/modules/manage_network_components_form_plugin.php b/pandora_console/godmode/modules/manage_network_components_form_plugin.php index 0de0c1c068..6ee55f4161 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_plugin.php +++ b/pandora_console/godmode/modules/manage_network_components_form_plugin.php @@ -18,8 +18,9 @@ require_once ('include/config.php'); check_login (); -echo '

'.__('Module component management').'

'; -echo '

'.__('Plugin component').'

'; +echo "

".__('Module management')." » "; +echo __('Module component management')."

"; +echo "

".__('Plugin component').'

'; $data = array (); $data[0] = __('Plugin'); diff --git a/pandora_console/godmode/modules/manage_network_components_form_wmi.php b/pandora_console/godmode/modules/manage_network_components_form_wmi.php index 4b6d5af229..087552032b 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_wmi.php +++ b/pandora_console/godmode/modules/manage_network_components_form_wmi.php @@ -26,8 +26,9 @@ if (! give_acl ($config['id_user'], 0, "PM")) { return; } -echo '

'.__('Module component management').'

'; -echo '

'.__('WMI component management').'

'; +echo "

".__('Module management')." » "; +echo __('Module component management')."

"; +echo "

".__('WMI component management').'

'; $data = array (); $data[0] = __('WMI query'); diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 7eb880a689..1dd7692151 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC090829'; +$build_version = 'PC090904'; $pandora_version = 'v3.0-dev'; $config['start_time'] = microtime (true);