2010-08-19 Junichi Satoh <junichi@rworks.jp>
* godmode/modules/manage_network_components_form_network.php: Changed the maximum OID length to 400, the same as definition of database. (120 is too short for some OIDs.) git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3157 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
3b0661aa87
commit
20cac394e5
|
@ -1,3 +1,9 @@
|
|||
2010-08-19 Junichi Satoh <junichi@rworks.jp>
|
||||
|
||||
* godmode/modules/manage_network_components_form_network.php: Changed
|
||||
the maximum OID length to 400, the same as definition of database.
|
||||
(120 is too short for some OIDs.)
|
||||
|
||||
2010-08-18 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* pandora_console/operation/search_results.php: Fixed reference for
|
||||
|
|
|
@ -47,7 +47,7 @@ push_table_row ($data, 'snmp_port');
|
|||
|
||||
$data = array ();
|
||||
$data[0] = __('SNMP OID');
|
||||
$data[1] = print_input_text ('snmp_oid', $snmp_oid, '', 30, 120, true);
|
||||
$data[1] = print_input_text ('snmp_oid', $snmp_oid, '', 30, 400, true);
|
||||
//$table->colspan['snmp_2'][1] = 3;
|
||||
$data[2] = __('SNMP community');
|
||||
$data[3] = print_input_text ('snmp_community', $snmp_community, '', 15, 60, true);
|
||||
|
|
Loading…
Reference in New Issue