From 52b1c5e39b189d0478f9eacdda48025ef453fe43 Mon Sep 17 00:00:00 2001 From: alejandro-campos Date: Thu, 13 Jun 2019 13:18:17 +0200 Subject: [PATCH] fix bug: path of ssl certificate not being set on general settings --- pandora_console/include/functions_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index 87d0601a4f..1d346f3b6d 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -180,7 +180,7 @@ function config_update_config() $error_update[] = __('Automatic check for updates'); } - if (!config_update_value('cert_path', (bool) get_parameter('cert_path'))) { + if (!config_update_value('cert_path', get_parameter('cert_path'))) { $error_update[] = __('SSL cert path'); }