aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/files/error.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-07-24 15:53:48 +0200
committerRobin Appelman <icewind@owncloud.com>2013-07-24 15:53:48 +0200
commitad266a42534eb84a778d1a3a1642db38a4c50325 (patch)
treecb6190b8d048ffd0431199ed3a8829d0534b4a25 /apps/files_encryption/files/error.php
parenta945ce908b2e8447c4a93b14c711fc066d9e8daf (diff)
parent651479322b234eefff15031b188b353793cc7af5 (diff)
downloadnextcloud-server-ad266a42534eb84a778d1a3a1642db38a4c50325.tar.gz
nextcloud-server-ad266a42534eb84a778d1a3a1642db38a4c50325.zip
Merge branch 'master' into sabre-objecttree
Diffstat (limited to 'apps/files_encryption/files/error.php')
-rw-r--r--apps/files_encryption/files/error.php3
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..f93c67d920a 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! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted 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;
}
-?>