From bab709a8d7cb533ddae67f74ca6cc934f5f74060 Mon Sep 17 00:00:00 2001 From: jsatoh Date: Thu, 19 Aug 2010 04:08:06 +0000 Subject: [PATCH] 2010-08-19 Junichi Satoh * 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 --- pandora_console/ChangeLog | 6 ++++++ .../modules/manage_network_components_form_network.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 2fb7f42af9..35894cff2a 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-08-19 Junichi Satoh + + * 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 * pandora_console/operation/search_results.php: Fixed reference for diff --git a/pandora_console/godmode/modules/manage_network_components_form_network.php b/pandora_console/godmode/modules/manage_network_components_form_network.php index 0c896e6360..f5a8411997 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_network.php +++ b/pandora_console/godmode/modules/manage_network_components_form_network.php @@ -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);