Merge pull request #12423 from MrPetovan/bug/9286-admin-features-lock
Show lock status even when feature is disabled in Admin/Features
This commit is contained in:
commit
3d3ccdad77
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ class Features extends BaseAdmin
|
||||||
DI::config()->set('feature', $feature, $val);
|
DI::config()->set('feature', $feature, $val);
|
||||||
|
|
||||||
if (!empty($_POST[$featurelock])) {
|
if (!empty($_POST[$featurelock])) {
|
||||||
DI::config()->set('feature_lock', $feature, $val);
|
DI::config()->set('feature_lock', $feature, 1);
|
||||||
} else {
|
} else {
|
||||||
DI::config()->delete('feature_lock', $feature);
|
DI::config()->delete('feature_lock', $feature);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue