mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-22 12:44:25 +00:00
fix cyrillic tags highlight
This commit is contained in:
parent
06dd75eb1e
commit
a285aa3158
@ -254,7 +254,7 @@ class TorrentController extends AbstractController
|
|||||||
{
|
{
|
||||||
if (in_array($keyword, $query))
|
if (in_array($keyword, $query))
|
||||||
{
|
{
|
||||||
$keywords[] = urlencode($keyword);
|
$keywords[] = $keyword;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
{% if torrent.keywords %}
|
{% if torrent.keywords %}
|
||||||
<div class="margin-b-16-px">
|
<div class="margin-b-16-px">
|
||||||
{% for keyword in torrent.keywords %}
|
{% for keyword in torrent.keywords %}
|
||||||
<a href="{{ path('torrent_search', { query : keyword }) }}">
|
<a href="{{ path('torrent_search', { query : keyword | url_encode(true) }) }}">
|
||||||
#{{ keyword }}
|
#{{ keyword }}
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user