Merge pull request #24953 from owncloud/fix-client-download-url
Fix URL for client downloads
This commit is contained in:
commit
a81c7dd3bb
|
@ -642,7 +642,7 @@ $CONFIG = array(
|
||||||
* seen in the first-run wizard and on Personal pages.
|
* seen in the first-run wizard and on Personal pages.
|
||||||
*/
|
*/
|
||||||
'customclient_desktop' =>
|
'customclient_desktop' =>
|
||||||
'http://owncloud.org/sync-clients/',
|
'https://owncloud.org/install/#install-clients',
|
||||||
'customclient_android' =>
|
'customclient_android' =>
|
||||||
'https://play.google.com/store/apps/details?id=com.owncloud.android',
|
'https://play.google.com/store/apps/details?id=com.owncloud.android',
|
||||||
'customclient_ios' =>
|
'customclient_ios' =>
|
||||||
|
|
|
@ -55,7 +55,7 @@ class OC_Defaults {
|
||||||
$this->defaultName = 'ownCloud'; /* short name, used when referring to the software */
|
$this->defaultName = 'ownCloud'; /* short name, used when referring to the software */
|
||||||
$this->defaultTitle = 'ownCloud'; /* can be a longer name, for titles */
|
$this->defaultTitle = 'ownCloud'; /* can be a longer name, for titles */
|
||||||
$this->defaultBaseUrl = 'https://owncloud.org';
|
$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->defaultiOSClientUrl = 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8';
|
||||||
$this->defaultiTunesAppId = '543672169';
|
$this->defaultiTunesAppId = '543672169';
|
||||||
$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.owncloud.android';
|
$this->defaultAndroidClientUrl = 'https://play.google.com/store/apps/details?id=com.owncloud.android';
|
||||||
|
|
Loading…
Reference in New Issue