diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-09-17 17:12:06 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-09-17 17:13:25 +0200 |
commit | 14571d41038970cf214daf986efdc70952ff2350 (patch) | |
tree | a4c028b7ff652d5cee0e0d609c218fae2da6fc4c /apps/files_encryption/files | |
parent | c88d517e8879c56755bc26f604d515d9772b35b3 (diff) | |
download | nextcloud-server-14571d41038970cf214daf986efdc70952ff2350.tar.gz nextcloud-server-14571d41038970cf214daf986efdc70952ff2350.zip |
force loading of encryption app
Diffstat (limited to 'apps/files_encryption/files')
-rw-r--r-- | apps/files_encryption/files/error.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index c33a5a531f5..b801c17bd40 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -4,6 +4,9 @@ if (!isset($_)) { //also provide standalone error page require_once __DIR__ . '/../../../lib/base.php'; require_once __DIR__ . '/../lib/crypt.php'; + OC_JSON::checkAppEnabled('files_encryption'); + OC_App::loadApp('files_encryption'); + $l = \OC::$server->getL10N('files_encryption'); if (isset($_GET['errorCode'])) { |