diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-07-02 10:14:33 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-07-02 10:14:33 +0200 |
commit | 40e6ede6a274f65b8ad29bfc5413baf5fbfe8eb4 (patch) | |
tree | 02fe021d14b19fb8b07dfda9fbafd8b88dd29dfb /apps/files_encryption | |
parent | d5c48547089c4c60ca85ada0aa07441fe6c21e3d (diff) | |
download | nextcloud-server-40e6ede6a274f65b8ad29bfc5413baf5fbfe8eb4.tar.gz nextcloud-server-40e6ede6a274f65b8ad29bfc5413baf5fbfe8eb4.zip |
improved error message
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/hooks/hooks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index f340425e0f0..8d868c10b1a 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -42,7 +42,7 @@ class Hooks { //check if all requirements are met
if(!Helper::checkRequirements() ) {
$error_msg = $l->t("Missing requirements.");
- $hint = $l->t('Please make sure that the OpenSSL module and PHP >= 5.3.3 is installed. For now the encryption app was disabled.');
+ $hint = $l->t('Please make sure that the OpenSSL module and PHP >= 5.3.3 is installed. For now, the encryption app has been disabled.');
\OC_App::disable('files_encryption');
\OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR);
\OCP\Template::printErrorPage($error_msg, $hint);
|