Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2017-10-17 12:24:01 +0300
committerBjoern Schiessle <bjoern@schiessle.org>2017-10-17 12:31:46 +0300
commitd8253d64a2099e4d7b24a95ca7207ae239dd6a80 (patch)
tree71c4b2b358bfeca2d5bc6ff009161bf7850214df
parentcf82aa3f3081ef3920bdcad9c848d36b1d11001b (diff)
fix urlstable10
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
-rw-r--r--settings/Controller/CheckSetupController.php4
-rw-r--r--tests/Settings/Controller/CheckSetupControllerTest.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/settings/Controller/CheckSetupController.php b/settings/Controller/CheckSetupController.php
index 86b9b768747..d1da89575fa 100644
--- a/settings/Controller/CheckSetupController.php
+++ b/settings/Controller/CheckSetupController.php
@@ -192,10 +192,10 @@ class CheckSetupController extends Controller {
if(strpos($versionString, 'NSS/') === 0) {
try {
$firstClient = $this->clientService->newClient();
- $firstClient->get('https://www.owncloud.org/');
+ $firstClient->get('https://nextcloud.com/');
$secondClient = $this->clientService->newClient();
- $secondClient->get('https://owncloud.org/');
+ $secondClient->get('https://nextcloud.com/');
} catch (ClientException $e) {
if($e->getResponse()->getStatusCode() === 400) {
return (string) $this->l10n->t('cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably.', ['NSS', $versionString, $features]);
diff --git a/tests/Settings/Controller/CheckSetupControllerTest.php b/tests/Settings/Controller/CheckSetupControllerTest.php
index 74e942386b0..e60bf3fd974 100644
--- a/tests/Settings/Controller/CheckSetupControllerTest.php
+++ b/tests/Settings/Controller/CheckSetupControllerTest.php
@@ -481,7 +481,7 @@ class CheckSetupControllerTest extends TestCase {
$client->expects($this->at(0))
->method('get')
- ->with('https://www.owncloud.org/', [])
+ ->with('https://nextcloud.com/', [])
->will($this->throwException($exception));
$this->clientService->expects($this->once())
@@ -515,7 +515,7 @@ class CheckSetupControllerTest extends TestCase {
$client->expects($this->at(0))
->method('get')
- ->with('https://www.owncloud.org/', [])
+ ->with('https://nextcloud.com/', [])
->will($this->throwException($exception));
$this->clientService->expects($this->once())