diff options
author | scolebrook <scolebrook@mac.com> | 2014-07-08 09:51:05 -0400 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-08-06 08:56:31 +0200 |
commit | ec79e5470aaef404195c8f0b30f0f9ea4882ed45 (patch) | |
tree | d9847232e89b1d38d9fb83dcf8271865acd58684 /settings/personal.php | |
parent | 9b9fbc60c0792f5e0f519865f37ef96f6d82a9f9 (diff) | |
download | nextcloud-server-ec79e5470aaef404195c8f0b30f0f9ea4882ed45.tar.gz nextcloud-server-ec79e5470aaef404195c8f0b30f0f9ea4882ed45.zip |
Add ability to theme iOS and Android client URLs just like desktop URLs.
* added to personal settings page.
* fix uppercase issue
* remove escaping because it's unneeded
Diffstat (limited to 'settings/personal.php')
-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 |