From a91cde0748f0caf8058e63eb51aee94e51d3fd7c Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Fri, 16 Jan 2015 13:00:49 +0100 Subject: [PATCH] Fixed the PHP warning with undefined var. TICKET: #1552 (cherry picked from commit 5a5abe8e5318383473657ec31b2e687cae19a598) --- pandora_console/extensions/resource_registration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/extensions/resource_registration.php b/pandora_console/extensions/resource_registration.php index 0a77928765..cdb8fa8e08 100644 --- a/pandora_console/extensions/resource_registration.php +++ b/pandora_console/extensions/resource_registration.php @@ -656,7 +656,7 @@ function process_upload_xml_component($xml) { $tcp_send = $snmp_version; $plugin_user = $auth_user; $plugin_pass = $auth_password; - $plugin_parameter = $auth_method; + $plugin_parameters = $auth_method; $custom_string_1 = $privacy_method; $custom_string_2 = $privacy_pass; $custom_string_3 = $security_level;