Skip to content

Commit b6983c2

Browse files
committed
Fix missing space between anchor tag attributes
1 parent 4e976a3 commit b6983c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wcfsetup/install/files/lib/util/StringUtil.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ public static function getAnchorTagAttributes($url, $isUgc = false): string
747747
$rel = 'nofollow';
748748
if (EXTERNAL_LINK_TARGET_BLANK) {
749749
$rel .= ' noopener';
750-
$attributes .= 'target="_blank"';
750+
$attributes .= ' target="_blank"';
751751
}
752752
if ($isUgc) {
753753
$rel .= ' ugc';

0 commit comments

Comments
 (0)