diff options
author | Björn Schießle <schiessle@owncloud.com> | 2014-08-05 17:53:18 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2014-08-05 17:53:18 +0200 |
commit | d35bfc9a4c2e98305ed2317e009de38bf009cc38 (patch) | |
tree | 515d7028887399bd35930c33ce468e052e31b67a /settings | |
parent | 54030f4eefa751478b64b277614c0db89435f18f (diff) | |
parent | 8561d0dfca8fdb3826f6a301ee9c617bb11821fc (diff) | |
download | nextcloud-server-d35bfc9a4c2e98305ed2317e009de38bf009cc38.tar.gz nextcloud-server-d35bfc9a4c2e98305ed2317e009de38bf009cc38.zip |
Merge pull request #9520 from owncloud/theme_urls
Add ability to theme iOS and Android client URLs just like desktop URLs.
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 |