Merge pull request #8693 from nextcloud/13-8173
[stable13] Fix undefined index problem
This commit is contained in:
commit
41f8f68a5a
|
@ -293,9 +293,11 @@ class AppConfig implements IAppConfig {
|
||||||
public function getFilteredValues($app) {
|
public function getFilteredValues($app) {
|
||||||
$values = $this->getValues($app, false);
|
$values = $this->getValues($app, false);
|
||||||
|
|
||||||
foreach ($this->sensitiveValues[$app] as $sensitiveKey) {
|
if (array_key_exists($app, $this->sensitiveValues)) {
|
||||||
if (isset($values[$sensitiveKey])) {
|
foreach ($this->sensitiveValues[$app] as $sensitiveKey) {
|
||||||
$values[$sensitiveKey] = IConfig::SENSITIVE_VALUE;
|
if (isset($values[$sensitiveKey])) {
|
||||||
|
$values[$sensitiveKey] = IConfig::SENSITIVE_VALUE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue