1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-02-02 12:57:35 +01:00

poster_id.html: remove extra space at start

This commit is contained in:
Zankaria 2024-08-17 19:07:31 +02:00 committed by Zankaria
parent ef2ce5ba8b
commit 0e5b56ab4b

View File

@ -1,7 +1,7 @@
{% if config.poster_ids %}
{% if post.thread %}
<span class="poster_id">{{ post.ip|poster_id(post.thread) }}</span>
<span class="poster_id">{{ post.ip|poster_id(post.thread) }}</span>
{% else %}
<span class="poster_id">{{ post.ip|poster_id(post.id) }}</span>
<span class="poster_id">{{ post.ip|poster_id(post.id) }}</span>
{% endif %}
{% endif %}