diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-01-12 09:53:23 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-01-12 09:53:23 +0100 |
commit | 8b6b042ffde9490c24a1689919dbc6678381239c (patch) | |
tree | 1b5f30630887c44dcde93beaff08db3d199496ca /settings/admin.php | |
parent | 3317dd0a8e2ca265172d53a16f9241f3351aa3b8 (diff) | |
download | nextcloud-server-8b6b042ffde9490c24a1689919dbc6678381239c.tar.gz nextcloud-server-8b6b042ffde9490c24a1689919dbc6678381239c.zip |
Add config switch to disable the .well-known URL check
Diffstat (limited to 'settings/admin.php')
-rw-r--r-- | settings/admin.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/settings/admin.php b/settings/admin.php index d484d6a1e48..25db05d99ac 100644 --- a/settings/admin.php +++ b/settings/admin.php @@ -75,6 +75,7 @@ $template->assign('showLog', $showLog); $template->assign('readOnlyConfigEnabled', OC_Helper::isReadOnlyConfigEnabled()); $template->assign('isLocaleWorking', OC_Util::isSetLocaleWorking()); $template->assign('isAnnotationsWorking', OC_Util::isAnnotationsWorking()); +$template->assign('checkForWorkingWellKnownSetup', $config->getSystemValue('check_for_working_wellknown_setup', true)); $template->assign('has_fileinfo', OC_Util::fileInfoLoaded()); $template->assign('backgroundjobs_mode', $appConfig->getValue('core', 'backgroundjobs_mode', 'ajax')); $template->assign('cron_log', $config->getSystemValue('cron_log', true)); |