Fix parse error
This commit is contained in:
parent
819592c3bd
commit
837ac290dd
1 changed files with 1 additions and 1 deletions
|
@ -2276,7 +2276,7 @@ function admin_page_features_post(App $a)
|
||||||
|
|
||||||
foreach ($features as $fname => $fdata) {
|
foreach ($features as $fname => $fdata) {
|
||||||
foreach (array_slice($fdata, 1) as $f) {
|
foreach (array_slice($fdata, 1) as $f) {
|
||||||
$f eature = $f[0];
|
$feature = $f[0];
|
||||||
$feature_state = 'feature_' . $feature;
|
$feature_state = 'feature_' . $feature;
|
||||||
$featurelock = 'featurelock_' . $feature;
|
$featurelock = 'featurelock_' . $feature;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue