Skip to content
Snippets Groups Projects
Commit 2b586eb9 authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

correct target blank from image to link

parent c14f0b56
Branches
No related tags found
No related merge requests found
...@@ -12,14 +12,14 @@ ...@@ -12,14 +12,14 @@
<div class="clientsbox"> <div class="clientsbox">
<h2><?php echo $l->t('Get the apps to sync your files');?></h2> <h2><?php echo $l->t('Get the apps to sync your files');?></h2>
<a href="<?php echo $_['clients']['desktop']; ?>"> <a href="<?php echo $_['clients']['desktop']; ?>" target="_blank">
<img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" /> <img src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" />
</a> </a>
<a href="<?php echo $_['clients']['android']; ?>"> <a href="<?php echo $_['clients']['android']; ?>" target="_blank">
<img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" /> <img src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" />
</a> </a>
<a href="<?php echo $_['clients']['ios']; ?>"> <a href="<?php echo $_['clients']['ios']; ?>" target="_blank">
<img target="_blank" src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" /> <img src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" />
</a> </a>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment