diff options
author | scolebrook <scolebrook@mac.com> | 2014-07-08 15:15:22 -0400 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-05 13:16:51 +0200 |
commit | 8c4358445063eb61f80455bd62f94a388b3a0723 (patch) | |
tree | 4f9a449dad97ada7037a21fd48d91ff6565d83da /settings | |
parent | 2e127d2c5ea82089f74a5a33549cd42db9d1bb5e (diff) | |
download | nextcloud-server-8c4358445063eb61f80455bd62f94a388b3a0723.tar.gz nextcloud-server-8c4358445063eb61f80455bd62f94a388b3a0723.zip |
Added to personal settings page.
Diffstat (limited to 'settings')
-rw-r--r-- | settings/personal.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/personal.php b/settings/personal.php index 36e8ea016de..ddebcc03024 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -76,8 +76,8 @@ usort( $languages, function ($a, $b) { //links to clients $clients = array( 'desktop' => OC_Config::getValue('customclient_desktop', $defaults->getSyncClientUrl()), - 'android' => OC_Config::getValue('customclient_android', 'https://play.google.com/store/apps/details?id=com.owncloud.android'), - 'ios' => OC_Config::getValue('customclient_ios', 'https://itunes.apple.com/us/app/owncloud/id543672169?mt=8') + 'android' => OC_Config::getValue('customclient_android', $defaults->getAndroidClientUrl()), + 'ios' => OC_Config::getValue('customclient_ios', $defaults->getiOSClientUrl()) ); // Return template |