aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/newfile.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2013-10-27 11:53:14 +0100
committerAndreas Fischer <bantu@owncloud.com>2013-10-27 11:53:14 +0100
commiteb2d66d1a0aea194318fe2aa7020157a9ac0f193 (patch)
treee84876b61f4f8520c1295346696fe2a5d718c966 /apps/files/ajax/newfile.php
parentaa069833459e2d2f4c512efc7e0282a13f43fc8d (diff)
downloadnextcloud-server-eb2d66d1a0aea194318fe2aa7020157a9ac0f193.tar.gz
nextcloud-server-eb2d66d1a0aea194318fe2aa7020157a9ac0f193.zip
Fix double not in newfile/newfolder language.
Diffstat (limited to 'apps/files/ajax/newfile.php')
-rw-r--r--apps/files/ajax/newfile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php
index d1183089b4f..eed0047fc81 100644
--- a/apps/files/ajax/newfile.php
+++ b/apps/files/ajax/newfile.php
@@ -53,7 +53,7 @@ $result = array(
);
if(trim($filename) === '') {
- $result['data'] = array('message' => $l10n->t('File name cannot not be empty.'));
+ $result['data'] = array('message' => $l10n->t('File name cannot be empty.'));
OCP\JSON::error($result);
exit();
}