Skip to content

Commit 7876f29

Browse files
authored
[BUGFIX] Use rawurlencode() for user links
1 parent 9d8ed7d commit 7876f29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/expand-tags

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ foreach (json_decode(file_get_contents(SEARCH_PATH . 'files.json'), true) as $fi
6161
$expandedTagLine .= ' **Author:**';
6262

6363
foreach ($authors as $author) {
64-
$expandedTagLine .= ' [@' . $author . '](https://my.typo3.org/u/' . $author . ')';
64+
$expandedTagLine .= ' [@' . $author . '](https://my.typo3.org/u/' . rawurlencode($author) . ')';
6565
}
6666
}
6767

0 commit comments

Comments
 (0)