summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-07-04 14:50:07 +0200
committerBjörn Schießle <schiessle@owncloud.com>2013-07-04 14:50:07 +0200
commitf30dd1557eda78f81a7a9e40bea8ae5bee61d36d (patch)
treed2176958a32e2c95c5c0b0985430b13952583b56
parent3fc5b34247cc30809ca525b96e73f1448e5b2e9b (diff)
downloadnextcloud-server-f30dd1557eda78f81a7a9e40bea8ae5bee61d36d.tar.gz
nextcloud-server-f30dd1557eda78f81a7a9e40bea8ae5bee61d36d.zip
more verbose error message
-rw-r--r--apps/files_encryption/hooks/hooks.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php
index 8d868c10b1a..ed768f176aa 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 has been disabled.');
+ $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.');
\OC_App::disable('files_encryption');
\OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR);
\OCP\Template::printErrorPage($error_msg, $hint);