Fix spelling mistake in link attribute name (target)
The mistake caused the links to open in the same window/tab instead of a new window or tab. Signed-off-by: ADTC <send2adtc@gmail.com>
This commit is contained in:
parent
b57020b421
commit
3ab6fc63c3
|
@ -46,7 +46,7 @@ foreach($plugins['all'] as $Plugin)
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<td class="uk-text-center">'.$Plugin->version().'</td>
|
<td class="uk-text-center">'.$Plugin->version().'</td>
|
||||||
<td class="uk-text-center"><a targe="_blank" href="'.$Plugin->website().'">'.$Plugin->author().'</a></td>
|
<td class="uk-text-center"><a target="_blank" href="'.$Plugin->website().'">'.$Plugin->author().'</a></td>
|
||||||
';
|
';
|
||||||
|
|
||||||
echo '</tr>';
|
echo '</tr>';
|
||||||
|
|
|
@ -44,7 +44,7 @@ foreach($themes as $theme)
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<td class="uk-text-center">'.$theme['version'].'</td>
|
<td class="uk-text-center">'.$theme['version'].'</td>
|
||||||
<td class="uk-text-center"><a targe="_blank" href="'.$theme['website'].'">'.$theme['author'].'</a></td>
|
<td class="uk-text-center"><a target="_blank" href="'.$theme['website'].'">'.$theme['author'].'</a></td>
|
||||||
';
|
';
|
||||||
|
|
||||||
echo '</tr>';
|
echo '</tr>';
|
||||||
|
|
Loading…
Reference in New Issue