summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcmeh <cmeh@users.noreply.github.com>2015-03-11 09:59:42 +0100
committercmeh <cmeh@users.noreply.github.com>2015-03-11 09:59:42 +0100
commit4a0c649c8a2723a1592a567edb10ec7db8f263b5 (patch)
tree85348988d4dafdee10721eaf228032adb90e6c9f
parentcfaee93552b519b8e017e63fd5a82b1e5c9f951b (diff)
downloadnextcloud-server-4a0c649c8a2723a1592a567edb10ec7db8f263b5.tar.gz
nextcloud-server-4a0c649c8a2723a1592a567edb10ec7db8f263b5.zip
Correct "one invalid characters" to "one invalid character"
Corrected "one invalid characters" to "one invalid character" in line 1575.
-rw-r--r--lib/private/files/view.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php
index f14209fd925..8b448abeb89 100644
--- a/lib/private/files/view.php
+++ b/lib/private/files/view.php
@@ -1572,7 +1572,7 @@ class View {
} catch (ReservedWordException $ex) {
throw new InvalidPathException($l10n->t('File name is a reserved word'));
} catch (InvalidCharacterInPathException $ex) {
- throw new InvalidPathException($l10n->t('File name contains at least one invalid characters'));
+ throw new InvalidPathException($l10n->t('File name contains at least one invalid character'));
}
}
}