forked from Wavyzz/dolibarr
Fix warnings
This commit is contained in:
@@ -2037,8 +2037,8 @@ class Setup extends DolibarrApi
|
||||
$xmlremote = $conf->global->MAIN_FILECHECK_URL;
|
||||
}
|
||||
$param = 'MAIN_FILECHECK_URL_'.DOL_VERSION;
|
||||
if (empty($xmlremote) && !empty($conf->global->$param)) {
|
||||
$xmlremote = $conf->global->$param;
|
||||
if (empty($xmlremote) && getDolGlobalString($param)) {
|
||||
$xmlremote = getDolGlobalString($param);
|
||||
}
|
||||
if (empty($xmlremote)) {
|
||||
$xmlremote = 'https://www.dolibarr.org/files/stable/signatures/filelist-'.DOL_VERSION.'.xml';
|
||||
|
||||
Reference in New Issue
Block a user