31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-01 13:20:46 +00:00

Makes links to github appear in a new window

Now the links make your joomla disapear because you load the github page in same page. Adding the target to link it opens in a new window.
This commit is contained in:
javier gomez 2013-07-12 11:25:07 +02:00
parent 5717f46c92
commit 62af8ba1c7

View File

@ -24,7 +24,8 @@ foreach($this->items as $i => $item) :
<td>
<a class="icon icon16-github hasTip"
title="<?php echo JText::_('COM_PATCHTESTER_OPEN_IN_GITHUB'); ?>"
href="<?php echo $item->html_url; ?>">
href="<?php echo $item->html_url; ?>"
target="_blank">
<?php echo $item->title; ?>
</a>
</td>