Browse Source

Bugfix: Thumbnail sizes (thumbx => thumbwidth, etc.)

pull/40/head
Michael Foster 11 years ago
parent
commit
0565e2119d
  1. 2
      templates/post_reply.html
  2. 2
      templates/post_thread.html

2
templates/post_reply.html

@ -104,7 +104,7 @@
{{ config.root }}{{ config.spoiler_image }} {{ config.root }}{{ config.spoiler_image }}
{% else %} {% else %}
{{ config.uri_thumb }}{{ post.thumb }} {{ config.uri_thumb }}{{ post.thumb }}
{% endif %}" style="width:{{ post.thumbx }}px;height:{{ post.thumby }}px" alt="" /> {% endif %}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" alt="" />
</a> </a>
{% endif %} {% endif %}
{{ post.postControls }} {{ post.postControls }}

2
templates/post_thread.html

@ -54,7 +54,7 @@
{{ config.root }}{{ config.spoiler_image }} {{ config.root }}{{ config.spoiler_image }}
{% else %} {% else %}
{{ config.uri_thumb }}{{ post.thumb }} {{ config.uri_thumb }}{{ post.thumb }}
{% endif %}" style="width:{{ post.thumbx }}px;height:{{ post.thumby }}px" alt="" /></a> {% endif %}" style="width:{{ post.thumbwidth }}px;height:{{ post.thumbheight }}px" alt="" /></a>
{% endif %} {% endif %}
<div class="post op"><p class="intro"{% if not index %} id="{{ post.id }}"{% endif %}> <div class="post op"><p class="intro"{% if not index %} id="{{ post.id }}"{% endif %}>
<input type="checkbox" class="delete" name="delete_{{ post.id }}" id="delete_{{ post.id }}" /> <input type="checkbox" class="delete" name="delete_{{ post.id }}" id="delete_{{ post.id }}" />

Loading…
Cancel
Save