From: Björn Schießle Date: Tue, 2 Jul 2013 08:14:33 +0000 (+0200) Subject: improved error message X-Git-Tag: v6.0.0alpha2~524^2~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=40e6ede6a274f65b8ad29bfc5413baf5fbfe8eb4;p=nextcloud-server.git improved error message --- diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index f340425e0f0..8d868c10b1a 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);