summaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/files
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-08-30 10:17:50 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2013-08-30 10:17:50 +0200
commitd7dca966a2a926be8b45ab337488143eac3ce9ba (patch)
tree629f2b342f493eca6fc2e009928011b0ee57da9d /apps/files_encryption/files
parent0a23ac18bc1f74cea98eed2c37aa03c99fd957f7 (diff)
downloadnextcloud-server-d7dca966a2a926be8b45ab337488143eac3ce9ba.tar.gz
nextcloud-server-d7dca966a2a926be8b45ab337488143eac3ce9ba.zip
improved error messaging, initial commit
Diffstat (limited to 'apps/files_encryption/files')
-rw-r--r--apps/files_encryption/files/error.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php
index 2dd27257abe..7a2bb1a2811 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! 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.');
+ $errorMsg = $l->t('Your private key is not valid! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app. If this doesn\'t help maybe 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);