Skip to content
Snippets Groups Projects
Commit d571f428 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #12668 from owncloud/keepspace

Keep spaces out of the string
parents 8ee9ee29 57452a36
No related branches found
No related tags found
Loading
...@@ -729,7 +729,7 @@ class OC_Mount_Config { ...@@ -729,7 +729,7 @@ class OC_Mount_Config {
$backends = ''; $backends = '';
for ($i = 0; $i < $dependencyGroupCount; $i++) { for ($i = 0; $i < $dependencyGroupCount; $i++) {
if ($i > 0 && $i === $dependencyGroupCount - 1) { if ($i > 0 && $i === $dependencyGroupCount - 1) {
$backends .= $l->t(' and '); $backends .= ' '.$l->t('and').' ';
} elseif ($i > 0) { } elseif ($i > 0) {
$backends .= ', '; $backends .= ', ';
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment