diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 4683e41e23..579da36f31 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,11 @@ +2008-06-30 Sancho Lerena + + * agent_manager.php: Agent names are now show in order. + + * functions.php: Added a blank space in Help icon. + + * tactical.php: Added a few links in tactical view. + 2008-06-30 Esteban Sanchez * include/functions_db.php: Renamed get_db_all_rows_sqlfree() to diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index 9b409844b0..c8a94b0344 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -100,7 +100,7 @@ if ($create_agent != 1) { echo ''.lang_string ("Parent").''; echo ''; -print_select_from_sql ('SELECT id_agente, nombre FROM tagente', +print_select_from_sql ('SELECT id_agente, nombre FROM tagente ORDER BY nombre', 'id_parent', $id_parent, '', 'None', '0'); echo ''.lang_string ("group").''; diff --git a/pandora_console/include/config.php b/pandora_console/include/config.php index f7c3d985e0..1e5a90ef4c 100644 --- a/pandora_console/include/config.php +++ b/pandora_console/include/config.php @@ -5,7 +5,7 @@ $config["dbuser"]="pandora"; // DB User $config["dbpass"]="pandora"; // DB Password $config["dbhost"]="localhost"; // DB Host $config["homedir"]="/var/www/pandora_console/"; // Config homedir -$config["homeurl"]="http://192.168.13.211/pandora_console"; // Base URL +$config["homeurl"]="http://localhost/pandora_console"; // Base URL // End of automatic config file ?>'; + $output = ' '; if ($return) return $return; echo $output; diff --git a/pandora_console/operation/agentes/tactical.php b/pandora_console/operation/agentes/tactical.php index 96dac94dd0..ce4bd6dfd5 100644 --- a/pandora_console/operation/agentes/tactical.php +++ b/pandora_console/operation/agentes/tactical.php @@ -1,12 +1,21 @@ ".$monitor_ok.""; echo ""."Monitor BAD".""; echo ""; + echo ""; if ($monitor_bad > 0) echo $monitor_bad; else echo "-"; + echo ""; + echo ""."Monitor Unknown".""; echo ""; if ($monitor_unknown > 0) @@ -118,10 +130,12 @@ echo ""."Alerts Fired".""; echo ""; + echo ""; if ($monitor_alert > 0) echo $monitor_alert; else echo "-"; + echo ""; echo ""."Alerts Total".""; echo "".$monitor_alert_total;