From 611aad903f577ecfc2254bb188f9c50e2e41847c Mon Sep 17 00:00:00 2001 From: juanmanuelr Date: Wed, 23 Feb 2011 13:32:07 +0000 Subject: [PATCH] 2011-02-23 Juan Manuel Ramon * include/functions_config.php: Fixed an error at the momment of accept the license terms in enterprise installation process. Fixes: #3183681 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4001 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 7 +++++++ pandora_console/include/functions_config.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 602c4928d3..1503f5ff2e 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2011-02-23 Juan Manuel Ramon + + * include/functions_config.php: Fixed an error at the momment of accept the + license terms in enterprise installation process. + + Fixes: #3183681 + 2011-02-23 Miguel de Dios * pandora_console/operation/events/events_list.php: fixed the show html diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index 3fc8ba338f..229238ea82 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -609,7 +609,7 @@ function process_config () { update_config_value( 'api_password', ''); } - if (!isset ($config['relative_path']) && (isset ($_POST['nick']) || isset ($config['id_user']))) { + if (!isset ($config['relative_path']) && (isset ($_POST['nick']) || isset ($config['id_user'])) && isset($config['enterprise_installed'])) { $isFunctionSkins = enterprise_include_once ('include/functions_skins.php'); if ($isFunctionSkins !== ENTERPRISE_NOT_HOOK) {