diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-12-04 12:01:11 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-12-04 12:01:11 +0100 |
commit | 1509dd1358561a2fb899e6a375c48c1030e2bb5f (patch) | |
tree | bc28682c9e1d354651508121ecb25ed8906116cb /apps/files_encryption | |
parent | 0dd44eaf2736bdd0459597dde3521c3ec5a449cd (diff) | |
download | nextcloud-server-1509dd1358561a2fb899e6a375c48c1030e2bb5f.tar.gz nextcloud-server-1509dd1358561a2fb899e6a375c48c1030e2bb5f.zip |
update 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 d40e6b3d124..a6b7555b376 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -66,7 +66,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 OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.');
+ $hint = $l->t('Please make sure 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);
|