From df99cf9f64174dd86e51324a16008001d24e286b Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Mon, 9 May 2016 18:48:56 +0200 Subject: [PATCH] Now the eHorus ID custom field name has a default value --- pandora_console/include/functions_config.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index 31ae6ffbe0..bc45bc5e52 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -1455,6 +1455,9 @@ function config_process_config () { if (!isset($config['ehorus_enabled'])) { config_update_value('ehorus_enabled', 0); } + if (!isset($config['ehorus_custom_field'])) { + config_update_value('ehorus_custom_field', 'eHorusID'); + } if (!isset($config['ehorus_hostname'])) { config_update_value('ehorus_hostname', 'switch.ehorus.com'); }