diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-07-01 21:13:04 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-07-01 21:13:04 +0200 |
commit | 3b1018ec00ed6f7fd4dc217c264351e69d5ea9d8 (patch) | |
tree | 2135a1f24a5e345c81dbd4d4df6a01b18b93c521 | |
parent | a7f2563990a186e4f71e5fd18dd5990004c5ba6a (diff) | |
download | nextcloud-server-3b1018ec00ed6f7fd4dc217c264351e69d5ea9d8.tar.gz nextcloud-server-3b1018ec00ed6f7fd4dc217c264351e69d5ea9d8.zip |
no ?> at the end of a file
missing .
-rw-r--r-- | apps/files_encryption/files/error.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index 63c74e4e797..85128fa4aea 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -4,7 +4,7 @@ if (!isset($_)) { //also provide standalone error page $l = OC_L10N::get('files_encryption'); - $errorMsg = $l->t('Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files'); + $errorMsg = $l->t('Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files.'); if(isset($_GET['p']) && $_GET['p'] === '1') { header('HTTP/1.0 404 ' . $errorMsg); @@ -21,4 +21,3 @@ if (!isset($_)) { //also provide standalone error page exit; } -?> |