diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-04-05 21:38:54 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-04-05 21:43:51 +0200 |
commit | 176b4d6832f67e4969fe92d54f15b2fe71660d47 (patch) | |
tree | 2b4fe3da4f69af7faf718ef800be923eafbbed33 /settings/Controller | |
parent | feef3cbba03c4517b25a60820e8c4534b0a02b67 (diff) | |
download | nextcloud-server-176b4d6832f67e4969fe92d54f15b2fe71660d47.tar.gz nextcloud-server-176b4d6832f67e4969fe92d54f15b2fe71660d47.zip |
Ping more privacy respecting organizations
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'settings/Controller')
-rw-r--r-- | settings/Controller/CheckSetupController.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/settings/Controller/CheckSetupController.php b/settings/Controller/CheckSetupController.php index 0e7e881645d..4debc52fc51 100644 --- a/settings/Controller/CheckSetupController.php +++ b/settings/Controller/CheckSetupController.php @@ -104,8 +104,10 @@ class CheckSetupController extends Controller { } $siteArray = ['www.nextcloud.com', - 'www.google.com', - 'www.github.com']; + 'www.startpage.com', + 'www.eff.org', + 'www.edri.org', + ]; foreach($siteArray as $site) { if ($this->isSiteReachable($site)) { @@ -116,7 +118,7 @@ class CheckSetupController extends Controller { } /** - * Chceks if the ownCloud server can connect to a specific URL using both HTTPS and HTTP + * Checks if the Nextcloud server can connect to a specific URL using both HTTPS and HTTP * @return bool */ private function isSiteReachable($sitename) { |