]> source.dussan.org Git - nextcloud-server.git/commitdiff
no ?> at the end of a file
authorThomas Müller <thomas.mueller@tmit.eu>
Mon, 1 Jul 2013 19:13:04 +0000 (21:13 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Mon, 1 Jul 2013 19:13:04 +0000 (21:13 +0200)
missing .

apps/files_encryption/files/error.php

index 63c74e4e797de99a5569b735b27ec3becec65f98..85128fa4aeacd8e86e2aeded6f06072d7a1317aa 100644 (file)
@@ -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;
 }
-?>