Skip to content

Commit 32dd464

Browse files
committed
fix(translation): Fix string concatenation in LDAP endpoint
Signed-off-by: Joas Schilling <[email protected]>
1 parent 095ab44 commit 32dd464

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/user_ldap/ajax/wizard.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@
105105
$setParameters = [];
106106
$configuration->setConfiguration($cfg, $setParameters);
107107
if (!in_array($key, $setParameters)) {
108-
\OC_JSON::error(['message' => $l->t($key .
109-
' Could not set configuration %s', $setParameters[0])]);
108+
\OC_JSON::error(['message' => $l->t('Could not set configuration %1$s to %2$s', [$key, $setParameters[0]])]);
110109
exit;
111110
}
112111
$configuration->saveConfiguration();

0 commit comments

Comments
 (0)