fix sensitive settings type
Cette révision appartient à :
Parent
b58391c02c
révision
cdf21175e5
@ -72,9 +72,10 @@ class OxidConfigCollector extends DataCollector implements Renderable
|
||||
|
||||
foreach ($shopConfiguration->getModuleConfigurations() as $moduleConfiguration) {
|
||||
foreach ($moduleConfiguration->getModuleSettings() as $setting) {
|
||||
$moduleSettings[$moduleConfiguration->getId()][$setting->getName()] = $setting->getType() == 'hidden' ?
|
||||
self::HIDDEN_TEXT :
|
||||
$setting->getValue();
|
||||
$moduleSettings[$moduleConfiguration->getId()][$setting->getName()] =
|
||||
strtolower($setting->getType()) == 'password' ?
|
||||
self::HIDDEN_TEXT :
|
||||
$setting->getValue();
|
||||
}
|
||||
}
|
||||
|
||||
|
Chargement…
x
Référencer dans un nouveau ticket
Bloquer un utilisateur