@@ -127,7 +127,6 @@ class ConfigurationManager
127
127
* @var array
128
128
*/
129
129
protected $ whiteListedLocalConfigurationPaths = [
130
- 'EXT/extConf ' ,
131
130
'EXTCONF ' ,
132
131
'DB ' ,
133
132
'SYS/caching/cacheConfigurations ' ,
@@ -371,6 +370,9 @@ public function getConfigurationValueByPath($path)
371
370
372
371
/**
373
372
* Update a given path in local configuration to a new value.
373
+ * Warning: TO BE USED ONLY to update a single feature.
374
+ * NOT TO BE USED within iterations to update multiple features.
375
+ * To update multiple features use setLocalConfigurationValuesByPathValuePairs().
374
376
*
375
377
* @param string $path Path to update
376
378
* @param mixed $value Value to set
@@ -431,6 +433,9 @@ public function removeLocalConfigurationKeysByPath(array $keys): bool
431
433
/**
432
434
* Enables a certain feature and writes the option to LocalConfiguration.php
433
435
* Short-hand method
436
+ * Warning: TO BE USED ONLY to enable a single feature.
437
+ * NOT TO BE USED within iterations to enable multiple features.
438
+ * To update multiple features use setLocalConfigurationValuesByPathValuePairs().
434
439
*
435
440
* @param string $featureName something like "InlineSvgImages"
436
441
* @return bool true on successful writing the setting
@@ -443,6 +448,9 @@ public function enableFeature(string $featureName): bool
443
448
/**
444
449
* Disables a feature and writes the option to LocalConfiguration.php
445
450
* Short-hand method
451
+ * Warning: TO BE USED ONLY to disable a single feature.
452
+ * NOT TO BE USED within iterations to disable multiple features.
453
+ * To update multiple features use setLocalConfigurationValuesByPathValuePairs().
446
454
*
447
455
* @param string $featureName something like "InlineSvgImages"
448
456
* @return bool true on successful writing the setting
0 commit comments