mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
fix(translation): Fix string concatenation in LDAP endpoint
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
45439dcd9c
commit
2ffa65201f
1 changed files with 1 additions and 2 deletions
|
|
@ -104,8 +104,7 @@ switch ($action) {
|
|||
$setParameters = [];
|
||||
$configuration->setConfiguration($cfg, $setParameters);
|
||||
if (!in_array($key, $setParameters)) {
|
||||
\OC_JSON::error(['message' => $l->t($key .
|
||||
' Could not set configuration %s', $setParameters[0])]);
|
||||
\OC_JSON::error(['message' => $l->t('Could not set configuration %1$s to %2$s', [$key, $setParameters[0]])]);
|
||||
exit;
|
||||
}
|
||||
$configuration->saveConfiguration();
|
||||
|
|
|
|||
Loading…
Reference in a new issue