mirror of
https://github.com/friendica/friendica
synced 2025-04-28 11:04:22 +02: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
|
@ -2491,7 +2491,7 @@ class Item
|
|||
}
|
||||
|
||||
$basetag = str_replace('_', ' ', substr($tag, 1));
|
||||
$newtag = '#[url=' . DI::baseUrl() . '/search?tag=' . $basetag . ']' . $basetag . '[/url]';
|
||||
$newtag = '#[url=' . DI::baseUrl() . '/search?tag=' . urlencode($basetag) . ']' . $basetag . '[/url]';
|
||||
|
||||
$body = str_replace($tag, $newtag, $body);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue