summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-07-01 12:24:21 +0200
committerBjörn Schießle <schiessle@owncloud.com>2013-07-01 12:24:21 +0200
commit9512382ae0c7d96a15dc10d7daeef72d89ca0ad2 (patch)
tree04985440d5d05262e9950642400bd0dd48040b8f /apps
parent16a719173f712acd1c170b3a4dd6b6c61de0bdf0 (diff)
downloadnextcloud-server-9512382ae0c7d96a15dc10d7daeef72d89ca0ad2.tar.gz
nextcloud-server-9512382ae0c7d96a15dc10d7daeef72d89ca0ad2.zip
fix error string
Diffstat (limited to 'apps')
-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 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);