summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-09-02 13:00:41 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2013-09-02 13:00:41 +0200
commit2c937e06d7d09062cdc4a7a7f61d90bfc3e74805 (patch)
tree491d9bf6df81ee643fbcfab35b325b0f35e5c009 /apps
parente1d6e63083cc5ff31cd974e3b7196793cbeebc99 (diff)
downloadnextcloud-server-2c937e06d7d09062cdc4a7a7f61d90bfc3e74805.tar.gz
nextcloud-server-2c937e06d7d09062cdc4a7a7f61d90bfc3e74805.zip
improved error message to reflect the case when the app was re-eanbled during the session
Diffstat (limited to 'apps')
-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..f8cd20738d8 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 or wasn\'t initialized correctly! 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 your log-in password didn\'t change than first try to log out and log in back in order to initialize your encryption keys');
if(isset($_GET['p']) && $_GET['p'] === '1') {
header('HTTP/1.0 404 ' . $errorMsg);