diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-07-27 16:29:05 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-07-28 15:32:19 +0200 |
commit | 0d515de13e0832447ed341c0b8377e01d350e48c (patch) | |
tree | cbfec31f51744299f7ee1fb807eb96f0bdb9709b /settings/application.php | |
parent | c34e63bb1f9752892d3c36b50e461b284f822a36 (diff) | |
download | nextcloud-server-0d515de13e0832447ed341c0b8377e01d350e48c.tar.gz nextcloud-server-0d515de13e0832447ed341c0b8377e01d350e48c.zip |
Detect old NSS and OpenSSL versions
This will detect old NSS and OpenSSL versions and show appropriate errors in the admin interface.
Fixes https://github.com/owncloud/core/issues/17901
Diffstat (limited to 'settings/application.php')
-rw-r--r-- | settings/application.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/application.php b/settings/application.php index a2f25935e12..8da835c18d2 100644 --- a/settings/application.php +++ b/settings/application.php @@ -154,7 +154,8 @@ class Application extends App { $c->query('Config'), $c->query('ClientService'), $c->query('URLGenerator'), - $c->query('Util') + $c->query('Util'), + $c->query('L10N') ); }); |