diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2013-02-06 15:20:43 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2013-02-06 15:20:43 +0100 |
commit | 0a16d25724d7af29282556cf04a343786a64c466 (patch) | |
tree | 50aad0f38f0fbb69f531b795c7ef9bd6989952f2 /settings/templates/personal.php | |
parent | 9e08f85c5e8b57d759cecc9ca145a816e121fe6c (diff) | |
download | nextcloud-server-0a16d25724d7af29282556cf04a343786a64c466.tar.gz nextcloud-server-0a16d25724d7af29282556cf04a343786a64c466.zip |
make it possible to modify the links to the clients
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r-- | settings/templates/personal.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 0f195d86d3d..398e65c0086 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -10,9 +10,9 @@ <fieldset class="personalblock"> <legend><strong><?php echo $l->t('Clients');?></strong></legend> - <a class="button" href="http://owncloud.org/sync-clients/" target="_blank"><?php echo $l->t('Download Desktop Clients');?></a> - <a class="button" href="https://play.google.com/store/apps/details?id=com.owncloud.android" target="_blank"><?php echo $l->t('Download Android Client');?></a> - <a class="button" href="https://itunes.apple.com/us/app/owncloud/id543672169?mt=8" target="_blank"><?php echo $l->t('Download iOS Client');?></a> + <a class="button" href="<?php echo $_['clients']['desktop']; ?>" target="_blank"><?php echo $l->t('Download Desktop Clients');?></a> + <a class="button" href="<?php echo $_['clients']['android']; ?>" target="_blank"><?php echo $l->t('Download Android Client');?></a> + <a class="button" href="<?php echo $_['clients']['ios']; ?>" target="_blank"><?php echo $l->t('Download iOS Client');?></a> </fieldset> <?php |