2013-08-09 Miguel de Dios <miguel.dedios@artica.es>

* godmode/snmpconsole/snmp_alert.php: change the text input for
	description, now it is a textarea for large descriptions.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8652 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-08-09 09:16:15 +00:00
parent 8f729503b4
commit 2a4652693a
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-08-09 Miguel de Dios <miguel.dedios@artica.es>
* godmode/snmpconsole/snmp_alert.php: change the text input for
description, now it is a textarea for large descriptions.
2013-08-09 Miguel de Dios <miguel.dedios@artica.es>
* godmode/snmpconsole/snmp_alert.php: fixed the PHP warnings for

View File

@ -325,8 +325,10 @@ if ($create_alert || $update_alert) {
echo '<table cellpadding="4" cellspacing="4" width="98%" class="databox" style="font-weight: bold">';
// Description
echo '<tr><td class="datos">'.__('Description').'</td><td class="datos">';
html_print_input_text ("description", $description, '', 60);
echo '<tr><td class="datos" valign="top">'.__('Description').'</td><td class="datos">';
html_print_textarea('description', 3, 2, $description, 'style="width:400px;"');
//html_print_input_text ("description", $description, '', 60);
echo '</td></tr>';
//echo '<tr><td class="datos"><b>' . __('Alert filters') . ui_print_help_icon("snmp_alert_filters", true) . '</b></td></tr>';