Browse Source

Fixed bug with custom file icons for non-image uploads

pull/40/head
Savetheinternet 13 years ago
parent
commit
7e40483b68
  1. 2
      templates/post_reply.html
  2. 2
      templates/post_thread.html

2
templates/post_reply.html

@ -75,7 +75,7 @@
)
</span>
</p>
<a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if this.thumb == 'file' %} class="file"{% endif %}>
<a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if post.thumb == 'file' %} class="file"{% endif %}>
<img src="
{% if post.thumb == 'file' %}
{{ config.root }}

2
templates/post_thread.html

@ -32,7 +32,7 @@
{% endif %}
)
</span></p>
<a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if this.thumb == 'file' %} class="file"{% endif %}>
<a href="{{ config.uri_img }}{{ post.file }}" target="_blank"{% if post.thumb == 'file' %} class="file"{% endif %}>
<img src="
{% if post.thumb == 'file' %}
{{ config.root }}

Loading…
Cancel
Save