Merge pull request #12668 from owncloud/keepspace

Keep spaces out of the string
remotes/origin/fix-10825
Thomas Müller 12 years ago
commit d571f42860
  1. 2
      apps/files_external/lib/config.php

@ -729,7 +729,7 @@ class OC_Mount_Config {
$backends = '';
for ($i = 0; $i < $dependencyGroupCount; $i++) {
if ($i > 0 && $i === $dependencyGroupCount - 1) {
$backends .= $l->t(' and ');
$backends .= ' '.$l->t('and').' ';
} elseif ($i > 0) {
$backends .= ', ';
}

Loading…
Cancel
Save