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. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2851 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
de2821eefc
commit
b0430e1dbb
|
@ -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,
|
||||
|
|
|
@ -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){
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue