Merge pull request #2565 from nextcloud/direct-desktop-clients

Change URL for desktop clients directly to pop-up
This commit is contained in:
Roeland Jago Douma 2016-12-08 14:33:08 +01:00 committed by GitHub
commit 402a07bfe0
3 changed files with 3 additions and 3 deletions

View File

@ -678,7 +678,7 @@ $CONFIG = array(
* seen in the first-run wizard and on Personal pages.
*/
'customclient_desktop' =>
'https://nextcloud.com/install/',
'https://nextcloud.com/install/#install-clients',
'customclient_android' =>
'https://play.google.com/store/apps/details?id=com.nextcloud.client',
'customclient_ios' =>

View File

@ -55,7 +55,7 @@ class OC_Defaults {
$this->defaultName = 'Nextcloud'; /* short name, used when referring to the software */
$this->defaultTitle = 'Nextcloud'; /* can be a longer name, for titles */
$this->defaultBaseUrl = 'https://nextcloud.com';
$this->defaultSyncClientUrl = 'https://nextcloud.com/install';
$this->defaultSyncClientUrl = 'https://nextcloud.com/install/#install-clients';
$this->defaultiOSClientUrl = 'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8';
$this->defaultiTunesAppId = '1125420102';
$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.nextcloud.client';

View File

@ -33,7 +33,7 @@ class OC_Theme {
* @return string URL
*/
public function getSyncClientUrl() {
return 'https://nextcloud.com/install';
return 'https://nextcloud.com/install/#install-clients';
}
/**