Skip to content

Commit

Permalink
Fixed issue #17508: Links at ExpressionEngine descriptions not openin…
Browse files Browse the repository at this point in the history
…g in new window/tab
  • Loading branch information
c-schmitz committed Aug 13, 2021
1 parent 7471e17 commit bf72986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/admin/expressions/test/functions.php
Expand Up @@ -36,7 +36,7 @@
<?=$aFuncDefinition[3]?>
</td>
<td>
<?=(!empty($aFuncDefinition[4]) ? '<a href="'.$aFuncDefinition[4].'">'.$aFuncDefinition[4].'</a>' : "&nbsp;")?>
<?=(!empty($aFuncDefinition[4]) ? '<a target="_blank" href="'.$aFuncDefinition[4].'">'.$aFuncDefinition[4].'</a>' : "&nbsp;")?>
</td>
</tr>
<?php } ?>
Expand Down

0 comments on commit bf72986

Please sign in to comment.