diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-07-01 12:24:21 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-07-01 12:24:21 +0200 |
commit | 9512382ae0c7d96a15dc10d7daeef72d89ca0ad2 (patch) | |
tree | 04985440d5d05262e9950642400bd0dd48040b8f /apps | |
parent | 16a719173f712acd1c170b3a4dd6b6c61de0bdf0 (diff) | |
download | nextcloud-server-9512382ae0c7d96a15dc10d7daeef72d89ca0ad2.tar.gz nextcloud-server-9512382ae0c7d96a15dc10d7daeef72d89ca0ad2.zip |
fix error string
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 786de177e89..f340425e0f0 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 >0 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 was disabled.');
\OC_App::disable('files_encryption');
\OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR);
\OCP\Template::printErrorPage($error_msg, $hint);
|