#12516 Fixed set token configuration lts updates
This commit is contained in:
parent
ac4b45646d
commit
f9fd33fa2e
|
@ -61,7 +61,7 @@ $license = db_get_value(
|
|||
);
|
||||
|
||||
if (isset($config['lts_updates']) === false) {
|
||||
$config['lts_updates'] = false;
|
||||
$config['lts_updates'] = true;
|
||||
}
|
||||
|
||||
if (empty($license) === true) {
|
||||
|
|
|
@ -63,6 +63,10 @@ if (users_is_admin()) {
|
|||
}
|
||||
}
|
||||
|
||||
if (isset($config['lts_updates']) === false) {
|
||||
config_update_value('lts_updates', 1);
|
||||
}
|
||||
|
||||
if (!$action_update_url_update_manager) {
|
||||
$url_update_manager = get_parameter(
|
||||
'url_update_manager',
|
||||
|
|
|
@ -2537,10 +2537,6 @@ function config_process_config()
|
|||
config_update_value('gotty_port', 8080);
|
||||
}
|
||||
|
||||
if (!isset($config['lts_updates'])) {
|
||||
config_update_value('lts_updates', 1);
|
||||
}
|
||||
|
||||
if (isset($config['performance_variables_control']) === false) {
|
||||
config_update_value(
|
||||
'performance_variables_control',
|
||||
|
|
Loading…
Reference in New Issue