summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-11 12:40:17 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-11 12:40:17 +0100
commit2b586eb91c66af7fb58b24db1de7eab4139179f2 (patch)
tree559453460bfc721e6044ec37106d7ff7203e032d /settings/templates
parentc14f0b56372fa275fa40492e2184af15cf1420d4 (diff)
downloadnextcloud-server-2b586eb91c66af7fb58b24db1de7eab4139179f2.tar.gz
nextcloud-server-2b586eb91c66af7fb58b24db1de7eab4139179f2.zip
correct target blank from image to link
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/personal.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index bc9db0f2b87..4f8f01adc89 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -12,14 +12,14 @@
<div class="clientsbox">
<h2><?php echo $l->t('Get the apps to sync your files');?></h2>
-<a href="<?php echo $_['clients']['desktop']; ?>">
- <img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" />
+<a href="<?php echo $_['clients']['desktop']; ?>" target="_blank">
+ <img src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" />
</a>
-<a href="<?php echo $_['clients']['android']; ?>">
- <img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" />
+<a href="<?php echo $_['clients']['android']; ?>" target="_blank">
+ <img src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" />
</a>
-<a href="<?php echo $_['clients']['ios']; ?>">
- <img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" />
+<a href="<?php echo $_['clients']['ios']; ?>" target="_blank">
+ <img src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" />
</a>
</div>