]> source.dussan.org Git - nextcloud-server.git/commitdiff
improved error msg and removed duplicate string
authorFlorin Peter <github@florin-peter.de>
Tue, 4 Jun 2013 20:31:36 +0000 (22:31 +0200)
committerFlorin Peter <github@florin-peter.de>
Tue, 4 Jun 2013 20:31:36 +0000 (22:31 +0200)
apps/files_encryption/files/error.php

index 37e94e5658f377cc42e958f1d1b15337f9fba733..13425ce7163eeaa4827fe485fccf4b0045e692fa 100644 (file)
@@ -4,15 +4,17 @@ 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.');
+
        if(isset($_GET['p']) && $_GET['p'] === '1') {
-               header('HTTP/1.0 404 ' . $l->t('Your private key is not valid! Maybe the your password was changed from outside.'));
+               header('HTTP/1.0 404 ' . $errorMsg);
        }
 
        // check if ajax request
        if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
-               \OCP\JSON::error(array('data' => array('message' => $l->t('Your private key is not valid! Maybe the your password was changed from outside.'))));
+               \OCP\JSON::error(array('data' => array('message' => $errorMsg)));
        } else {
-               header('HTTP/1.0 404 ' . $l->t('Your private key is not valid! Maybe the your password was changed from outside.'));
+               header('HTTP/1.0 404 ' . $errorMsg);
                $tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest');
                $tmpl->printPage();
        }