1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-29 01:34:31 +01:00

Show sages

This commit is contained in:
8chan Admin 2013-12-26 19:47:26 +00:00
parent d3ab54fd74
commit eaab7e28de
2 changed files with 8 additions and 0 deletions

View File

@ -887,6 +887,9 @@
// Allows js/quick-reply.js to work. This could make your imageboard more vulnerable to flood attacks.
$config['quick_reply'] = false;
// Show "SAGE!" next to sage posts
$config['show_sages'] = false;
/*
* ====================
* Video embedding

View File

@ -22,6 +22,11 @@
{# end email #}
</a>
{% endif %}
{% if config.show_sages and post.email == "sage" %}
<span class="sage_post"> SAGE!</span>
{% endif %}
{% if capcode %}
{{ capcode.cap }}
{% endif %}