2007-10-13 Raul Mateos <raulofpandora@gmail.com>

* operation/incidents/indicent_statistics.php: Added vertical align to images.

	* languages/language_es_es.php: Solved small text typo.

	* godmode/modules/manage_network_components.php: Add text filter and improved

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@674 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2007-10-13 21:00:40 +00:00
parent 4d8ed974ba
commit 6344bf025b
4 changed files with 21 additions and 10 deletions

View File

@ -1,3 +1,11 @@
2007-10-13 Raul Mateos <raulofpandora@gmail.com>
* operation/incidents/indicent_statistics.php: Added vertical align to images.
* languages/language_es_es.php: Solved small text typo.
* godmode/modules/manage_network_components.php: Add text filter and improved filter.
2007-10-12 Raul Mateos <raulofpandora@gmail.com>
* Near ALL php: Removed remaining help icons. Closed some HTML tags.

View File

@ -165,18 +165,21 @@ else
$ncgroup = 0;
echo "<form method='POST' action='index.php?sec=gmodules&sec2=godmode/modules/manage_network_components'>";
echo "<table cellpadding='4' cellspacing='4' class='databox'><tr>";
echo "<td>".$lang_label["group"]."</td>";
echo "<table cellpadding='4' cellspacing='4' class='databox'>";
echo "<td colspan='2' valign='top'>";
echo "<h3>".$lang_label["filter"]."</h3></td></tr>";
echo "<tr><td>".$lang_label["group"]."</td>";
echo "<td valign='middle'>";
echo "<select name='ncgroup' onChange='javascript:this.form.submit();'>";
echo "<option value='$ncgroup'>".give_network_component_group_name($ncgroup);
if ($ncgroup != 0)
echo "<option value='0'>".$lang_label["all"];
if ($ncgroup != 0){
echo "<option value='$ncgroup'>".give_network_component_group_name($ncgroup)."</option>";
}
echo "<option value='0'>".$lang_label["all"]."</option>";
$sql1 = "SELECT * FROM tnetwork_component_group WHERE id_sg != '$ncgroup'";
$result = mysql_query($sql1);
while ($row = mysql_fetch_array ($result))
echo "<option value='" . $row["id_sg"] . "'>". give_network_component_group_name ($row["id_sg"]);
echo "<option value='" . $row["id_sg"] . "'>". give_network_component_group_name ($row["id_sg"])."</option>";
echo "</select>";
echo "<td valign='middle'>";
echo "<noscript><input name='uptbutton' type='submit' class='sub' value='".$lang_label["show"]."'></noscript>";

View File

@ -861,7 +861,7 @@ $lang_label["graph_event_group"]="Gráfica de eventos por grupo";
$lang_label["graph_event_user"]="Gráfica de eventos por usuario";
$lang_label["db_agente_paquetes"]="Paquetes por agente";
$lang_label["db_agente_modulo"]="Módulos por agente";
$lang_label["inc_stat_status"]="Incidente por estado";
$lang_label["inc_stat_status"]="Incidentes por estado";
$lang_label["inc_stat_priority"]="Incidentes por prioridad";
$lang_label["inc_stat_user"]="Incidentes por usuario";
$lang_label["inc_stat_source"]="Incidentes por origen";

View File

@ -28,10 +28,10 @@ if (comprueba_login() == 0) {
echo $lang_label["statistics"]."</h2>";
echo "<table width = 90%>";
echo "<tr><td>";
echo "<tr><td valign='top'>";
echo '<h3>'.$lang_label["inc_stat_status"].'</h3>';
echo '<img src="reporting/fgraph.php?tipo=estado_incidente" border=0>';
echo "<td>";
echo "<td valign='top'>";
echo '<h3>'.$lang_label["inc_stat_priority"].'</h3>';
echo '<img src="reporting/fgraph.php?tipo=prioridad_incidente" border=0>';
echo "<tr><td>";