diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-11 12:40:17 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-02-11 12:40:17 +0100 |
commit | 2b586eb91c66af7fb58b24db1de7eab4139179f2 (patch) | |
tree | 559453460bfc721e6044ec37106d7ff7203e032d /settings/templates | |
parent | c14f0b56372fa275fa40492e2184af15cf1420d4 (diff) | |
download | nextcloud-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.php | 12 |
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> |