diff options
author | rakekniven <mark.ziegler@rakekniven.de> | 2018-03-19 15:00:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-19 15:00:27 +0100 |
commit | d88db9b496ad49b2e53d65023e0769e082d003c2 (patch) | |
tree | 384f129a853a1655346f77d93879f1ac40e14d44 /apps | |
parent | b2ceb29484dccbf60fcce4a01a140ec7a00614a8 (diff) | |
download | nextcloud-server-d88db9b496ad49b2e53d65023e0769e082d003c2.tar.gz nextcloud-server-d88db9b496ad49b2e53d65023e0769e082d003c2.zip |
Update ThemingController.php
Changed file according to discussion on PR.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index c156b9854a2..47f806d16f9 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -224,7 +224,7 @@ class ThemingController extends Controller { UPLOAD_ERR_PARTIAL => $this->l10n->t('The file was only partially uploaded'), UPLOAD_ERR_NO_FILE => $this->l10n->t('No file was uploaded'), UPLOAD_ERR_NO_TMP_DIR => $this->l10n->t('Missing a temporary folder'), - UPLOAD_ERR_CANT_WRITE => $this->l10n->t('Failed to write file to disk'), + UPLOAD_ERR_CANT_WRITE => $this->l10n->t('Could not write file to disk'), UPLOAD_ERR_EXTENSION => $this->l10n->t('A PHP extension stopped the file upload'), ]; if (empty($newLogo) && empty($newBackgroundLogo)) { |