diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index c63de545c3..374ea04a85 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-06-02 Miguel de Dios <miguel.dedios@artica.es> + + * general/header.php, godmode/db/db_audit.php, + godmode/reporting/reporting_builder.item_editor.php: cleaned html and fixed + unclose html tags in source code, the eclipse warm to me. + 2010-06-02 Raúl Mateos <raulofpandora@gmail.com> * operation/agentes/sla_view.php, operation/agentes/datos_agente.php, diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index 1d66d4eeb9..77f204a098 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -128,7 +128,7 @@ $msg_cnt = 0; <?php if ($config["metaconsole"] == 0){ ?> - <form method="get" style="" valign="middle" name="quicksearch"> + <form method="get" style="" name="quicksearch"> <script type="text/javascript" language="javascript"> var fieldKeyWordEmpty = true; </script> @@ -148,6 +148,7 @@ if ($config["metaconsole"] == 0){ <?php } ?> + </td> <td> <?php if ($config["metaconsole"] == 0){ diff --git a/pandora_console/godmode/db/db_audit.php b/pandora_console/godmode/db/db_audit.php index 0e5b5e4ef3..e396a46f31 100644 --- a/pandora_console/godmode/db/db_audit.php +++ b/pandora_console/godmode/db/db_audit.php @@ -88,14 +88,14 @@ echo "</tr></table>"; <form name="db_audit" method="post" action="index.php?sec=gdbman&sec2=godmode/db/db_audit"> <table width='300' cellpadding='4' cellspacing='4' class='databox'> <tr><td class='datos'> -<select name="date_purge" width="255px"> -<option value="<?php echo $time["3month"] ?>"><?php echo __('Purge audit data over 90 days') ?></option> -<option value="<?php echo $time["1month"] ?>"><?php echo __('Purge audit data over 30 days') ?></option> -<option value="<?php echo $time["2week"] ?>"><?php echo __('Purge audit data over 14 days') ?></option> -<option value="<?php echo $time["1week"] ?>"><?php echo __('Purge audit data over 7 days') ?></option> -<option value="<?php echo $time["3day"] ?>"><?php echo __('Purge audit data over 3 days') ?></option> -<option value="<?php echo $time["1day"] ?>"><?php echo __('Purge audit data over 1 day') ?></option> -<option value="<?php echo $time["all"] ?>"><?php echo __('Purge all audit data') ?></option> +<select name="date_purge"> + <option value="<?php echo $time["3month"] ?>"><?php echo __('Purge audit data over 90 days') ?></option> + <option value="<?php echo $time["1month"] ?>"><?php echo __('Purge audit data over 30 days') ?></option> + <option value="<?php echo $time["2week"] ?>"><?php echo __('Purge audit data over 14 days') ?></option> + <option value="<?php echo $time["1week"] ?>"><?php echo __('Purge audit data over 7 days') ?></option> + <option value="<?php echo $time["3day"] ?>"><?php echo __('Purge audit data over 3 days') ?></option> + <option value="<?php echo $time["1day"] ?>"><?php echo __('Purge audit data over 1 day') ?></option> + <option value="<?php echo $time["all"] ?>"><?php echo __('Purge all audit data') ?></option> </select> </td> <td class="datos"> diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 180a122ae8..72c8cf2fe4 100644 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -399,7 +399,9 @@ function print_SLA_list($width, $action, $idItem = null) { </tbody> <tbody> <tr id="sla_form" style="" class="datos"> - <td><input id="hidden-id_agent_sla" name="id_agent_sla" value="" type="hidden"><input class="ac_input" autocomplete="off" style="background: transparent url(images/lightning.png) no-repeat scroll right center; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" name="agent_sla" id="text-agent_sla" size="15" maxlength="20" type="text"><a href="#" class="tip"> <span>Type at least two characters to search</span></a></td> + <td> + <input id="hidden-id_agent_sla" name="id_agent_sla" value="" type="hidden"> + <input style="background: transparent url(images/lightning.png) no-repeat right;" name="agent_sla" id="text-agent_sla" size="15" maxlength="20" type="text"><a href="#" class="tip"> <span>Type at least two characters to search</span></a></td> <td><select id="id_agent_module_sla" name="id_agente_modulo_sla" disabled="disabled"><option value="0"><?php echo __('Select an Agent first'); ?></option></select></td> <td><input name="sla_min" id="text-sla_min" size="10" maxlength="10" type="text"></td> <td><input name="sla_max" id="text-sla_max" size="10" maxlength="10" type="text"></td>