2014-05-07 Alejandro Gallardo <alejandro.gallardo@artica.es>

* godmode/agentes/planned_downtime.editor.php,
	  godmode/alerts/configure_alert_template.php,
	  godmode/reporting/reporting_builder.item_editor.php,
	  operation/netflow/nf_live_view.php: Changed the maximum
	character length of the time inputs from 7 to 8.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9878 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
alexhigh 2014-05-07 14:14:23 +00:00
parent a8ef08a9f7
commit c94d516426
5 changed files with 15 additions and 7 deletions

View File

@ -1,3 +1,11 @@
2014-05-07 Alejandro Gallardo <alejandro.gallardo@artica.es>
* godmode/agentes/planned_downtime.editor.php,
godmode/alerts/configure_alert_template.php,
godmode/reporting/reporting_builder.item_editor.php,
operation/netflow/nf_live_view.php: Changed the maximum
character length of the time inputs from 7 to 8.
2014-05-06 Alejandro Gallardo <alejandro.gallardo@artica.es>
* godmode/alerts/alert_list.list.php: Now the form and

View File

@ -339,7 +339,7 @@ $table->data[5][1] = "
"</td>
<td>".
html_print_input_text ('once_date_from', $once_date_from, '', 10, 10, true) .
html_print_input_text ('once_time_from', $once_time_from, '', 7, 7, true) .
html_print_input_text ('once_time_from', $once_time_from, '', 7, 8, true) .
"</td>
</tr>
<tr>
@ -350,7 +350,7 @@ $table->data[5][1] = "
"</td>
<td>".
html_print_input_text ('once_date_to', $once_date_to, '', 10, 10, true) .
html_print_input_text ('once_time_to', $once_time_to, '', 7, 7, true) .
html_print_input_text ('once_time_to', $once_time_to, '', 7, 8, true) .
"</td>
</tr>
</table>

View File

@ -499,11 +499,11 @@ if ($step == 2) {
$table->data[1][0] = __('Time from') . ' ' .
ui_print_help_tip(__('Time format in Pandora is hours(24h):minutes:seconds'), true);
$table->data[1][1] = html_print_input_text ('time_from', $time_from, '', 7, 7,
$table->data[1][1] = html_print_input_text ('time_from', $time_from, '', 7, 8,
true);
$table->data[1][2] = __('Time to') . ' ' .
ui_print_help_tip(__('Time format in Pandora is hours(24h):minutes:seconds'), true);
$table->data[1][3] = html_print_input_text ('time_to', $time_to, '', 7, 7,
$table->data[1][3] = html_print_input_text ('time_to', $time_to, '', 7, 8,
true);
$table->colspan['threshold'][1] = 3;

View File

@ -640,7 +640,7 @@ html_print_input_hidden('id_item', $idItem);
ui_print_help_tip(__('Time format in Pandora is hours(24h):minutes:seconds'), true);
?>
</td>
<td colspan="6"><?php html_print_input_text ('time_from', $time_from, '', 7, 7);?></td>
<td colspan="6"><?php html_print_input_text ('time_from', $time_from, '', 7, 8);?></td>
</tr>
<tr>
<td>
@ -649,7 +649,7 @@ html_print_input_hidden('id_item', $idItem);
ui_print_help_tip(__('Time format in Pandora is hours(24h):minutes:seconds'), true);
?>
</td>
<td colspan="6"><?php html_print_input_text ('time_to', $time_to, '', 7, 7);?></td>
<td colspan="6"><?php html_print_input_text ('time_to', $time_to, '', 7, 8);?></td>
</tr>
</table>
</td>

View File

@ -183,7 +183,7 @@ echo '<form method="post" action="' . $config['homeurl'] . 'index.php?sec=netf&s
html_print_image ("images/calendar_view_day.png", true,
array("alt" => "calendar")) .
ui_print_help_tip(__('Date format in Pandora is year/month/day'), true) .
html_print_input_text ('time', $time, false, 10, 5, true) .
html_print_input_text ('time', $time, false, 10, 8, true) .
ui_print_help_tip(__('Time format in Pandora is hours(24h):minutes:seconds'), true) .
"</td>";