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:
ADTC 2017-03-13 21:42:28 +08:00
parent b57020b421
commit 3ab6fc63c3
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ foreach($plugins['all'] as $Plugin)
echo '
<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>';

View File

@ -44,7 +44,7 @@ foreach($themes as $theme)
echo '
<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>';