Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-07-02 12:14:33 +0400
committerBjörn Schießle <schiessle@owncloud.com>2013-07-04 18:35:06 +0400
commit2dedc3aa577fbb0db2966f771008188ab850ec11 (patch)
treef57b078f489660f94ed68847a4ccba966bfbd214 /apps
parentb722f8bba3a38373ffbba6c56da04941732e6918 (diff)
improved error message
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 182063e9f8d..a511c5523f8 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 was disabled.');
+ $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.');
\OC_App::disable('files_encryption');
\OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR);
\OCP\Template::printErrorPage($error_msg, $hint);