From 1d2cdfb9fd7aa7cbbdccb5738d2c88f0ebf64d4d Mon Sep 17 00:00:00 2001
From: Joas Schilling <nickvergessen@owncloud.com>
Date: Wed, 1 Jun 2016 16:58:57 +0200
Subject: [PATCH] Fix URL for client downloads

---
 config/config.sample.php        | 2 +-
 lib/private/legacy/defaults.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/config/config.sample.php b/config/config.sample.php
index c5f2f14e031..36c5fd55232 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -642,7 +642,7 @@ $CONFIG = array(
  * seen in the first-run wizard and on Personal pages.
  */
 'customclient_desktop' =>
-	'http://owncloud.org/sync-clients/',
+	'https://owncloud.org/install/#install-clients',
 'customclient_android' =>
 	'https://play.google.com/store/apps/details?id=com.owncloud.android',
 'customclient_ios' =>
diff --git a/lib/private/legacy/defaults.php b/lib/private/legacy/defaults.php
index ce8864643a2..bcfd5374e0a 100644
--- a/lib/private/legacy/defaults.php
+++ b/lib/private/legacy/defaults.php
@@ -55,7 +55,7 @@ class OC_Defaults {
 		$this->defaultName = 'ownCloud'; /* short name, used when referring to the software */
 		$this->defaultTitle = 'ownCloud'; /* can be a longer name, for titles */
 		$this->defaultBaseUrl = 'https://owncloud.org';
-		$this->defaultSyncClientUrl = 'https://owncloud.org/sync-clients/';
+		$this->defaultSyncClientUrl = 'https://owncloud.org/install/#install-clients';
 		$this->defaultiOSClientUrl = 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8';
 		$this->defaultiTunesAppId = '543672169';
 		$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.owncloud.android';
-- 
GitLab