diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-08-01 13:57:12 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-08-08 08:39:01 +0200 |
commit | 7ce03ba37c7ff45f2ee529c37469236a0a661725 (patch) | |
tree | be4f07dccbcc08a60e68f435f7172caab0a8de19 /apps | |
parent | 7aeb0068beeab6e2dbd129a13e2ccddac61c1c1b (diff) | |
download | nextcloud-server-7ce03ba37c7ff45f2ee529c37469236a0a661725.tar.gz nextcloud-server-7ce03ba37c7ff45f2ee529c37469236a0a661725.zip |
improved error message to refect openSSL PHP extension and stock openSSL configuration issues
Diffstat (limited to 'apps')
-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 e933207a9e1..07da839e8a2 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() || !Helper::checkConfiguration() ) {
$error_msg = $l->t("Missing requirements.");
- $hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled.');
+ $hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. 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);
|