diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-07 13:15:37 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-07 13:15:37 +0100 |
commit | d571f428609967256da1a99058e46a416cde5c64 (patch) | |
tree | 59e6c28b4e822022bfcea8e1520d1ab0b9da4eff /apps/files_external | |
parent | 8ee9ee29ea2be24b5863920a5f164cabbbe1b18c (diff) | |
parent | 57452a3641c1ea14ecb29b17998b49e13005b593 (diff) | |
download | nextcloud-server-d571f428609967256da1a99058e46a416cde5c64.tar.gz nextcloud-server-d571f428609967256da1a99058e46a416cde5c64.zip |
Merge pull request #12668 from owncloud/keepspace
Keep spaces out of the string
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 9400bbdedc0..898dc0c8543 100644 --- a/apps/files_external/lib/config.php +++ b/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 .= ', '; } |