mirror of
https://github.com/friendica/friendica
synced 2025-04-21 05:10:11 +00:00
urlencode for tags / fix smiley replacement
This commit is contained in:
parent
5d4f72698d
commit
fe00a3893d
5 changed files with 8 additions and 8 deletions
|
@ -226,7 +226,7 @@ class Profile extends BaseProfile
|
|||
// Separator is defined in Module\Settings\Profile\Index::cleanKeywords
|
||||
foreach (explode(', ', $profile['pub_keywords']) as $tag_label) {
|
||||
$tags[] = [
|
||||
'url' => '/search?tag=' . $tag_label,
|
||||
'url' => '/search?tag=' . urlencode($tag_label),
|
||||
'label' => Tag::TAG_CHARACTER[Tag::HASHTAG] . $tag_label,
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue