forked from leftypol/leftypol
Fixes count(): Parameter must be an array or an object that implements Countable as well as PHP 7.3 regression in users from upstream 3a41c24e6e5bcea2f4b9f328ddf5ff0cb8a8b2e8
This commit is contained in:
parent
3527e5703b
commit
d900279707
11 changed files with 32 additions and 32 deletions
|
@ -1,19 +1,19 @@
|
|||
<script src="{{ config.additional_javascript_url }}js/mod/recent_posts.js"></script>
|
||||
{% if not posts|count %}
|
||||
<p style="text-align:center" class="unimportant">({% trans 'There are no active posts.' %})</p>
|
||||
{% else %}
|
||||
<h4>Viewing last {{ limit|e }} posts</h4>
|
||||
<p>View <a href="?/recent/25"> 25 </a>|<a href="?/recent/50"> 50 </a>|<a href="?/recent/100"> 100 </a></p>
|
||||
<a href="javascript:void(0)" id="erase-local-data" style="float:right; clear:both">Erase local data</a></div>
|
||||
{% for post in posts %}
|
||||
{% if not post.thread %}
|
||||
{% set thread = post.id %}
|
||||
{% else %}
|
||||
{% set thread = post.thread %}
|
||||
{% endif %}
|
||||
<div class="post-wrapper" data-board="{{ post.board }}"><hr/><a class="eita-link" id="eita-{{ post.board }}-{{ thread }}" href="?/{{ post.board }}/{{ config.dir.res }}{{ thread }}.html#{{ post.id }}">/{{ post.board }}/{{ post.id }}</a><br>
|
||||
{{ post.built }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
<a href="/mod.php?/recent/{{ limit|e }}&last={{ last_time|e }}">Next {{ limit }} posts</a>
|
||||
<script src="{{ config.additional_javascript_url }}js/mod/recent_posts.js"></script>
|
||||
{% if posts|default([])|length %}
|
||||
<p style="text-align:center" class="unimportant">({% trans 'There are no active posts.' %})</p>
|
||||
{% else %}
|
||||
<h4>Viewing last {{ limit|e }} posts</h4>
|
||||
<p>View <a href="?/recent/25"> 25 </a>|<a href="?/recent/50"> 50 </a>|<a href="?/recent/100"> 100 </a></p>
|
||||
<a href="javascript:void(0)" id="erase-local-data" style="float:right; clear:both">Erase local data</a></div>
|
||||
{% for post in posts %}
|
||||
{% if not post.thread %}
|
||||
{% set thread = post.id %}
|
||||
{% else %}
|
||||
{% set thread = post.thread %}
|
||||
{% endif %}
|
||||
<div class="post-wrapper" data-board="{{ post.board }}"><hr/><a class="eita-link" id="eita-{{ post.board }}-{{ thread }}" href="?/{{ post.board }}/{{ config.dir.res }}{{ thread }}.html#{{ post.id }}">/{{ post.board }}/{{ post.id }}</a><br>
|
||||
{{ post.built }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
<a href="/mod.php?/recent/{{ limit|e }}&last={{ last_time|e }}">Next {{ limit }} posts</a>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue