This is a continuation of two previous posts - one here and another here.
Since then I have had time to test this thoroughly on clean installs of 1.7.48 with no plugins, quark theme and any edits made in the terminal (nano). It has been tested on several servers (incl. MacOS and debian) and PHP versions 8.3 and 8.4 with consistent results.
Note this only happens when using EU date formats (DD-MM-YYYY) in the page listing date range and frontmatter.
I have made it easy to reproduce by providing files to drop into a clean install - in both EU and US formats so you can compare.
There is a template file with a collection listing and a dat range listing - test.html.twig:
{% extends 'partials/base.html.twig' %}
{% block content %}
{{ page.content|raw }}
<h1>Grav version 1.7.48</h1>
<h2>Collection listing</h2>
<ul>
{% for p in page.collection.order('date','desc') %}
<li><a href="{{ p.permalink|e }}">{{ p.title|e }}</a> — {{ p.date|date|e }}</li>
{% endfor %}
</ul>
<h2>Date range listing</h2>
<ul>
{% for p in page.collection.dateRange('01-01-2024', '31-12-2024').order('date','desc') %}
<li><a href="{{ p.permalink|e }}">{{ p.title|e }}</a> — {{ p.date|date|e }}</li>
{% endfor %}
</ul>
{% endblock %}
and a 03.child-test folder where I define a test collection in test.md:
---
title: Child test
content:
items:
'@self.children'
---
and three ‘child’ page folders (named child-one, child-two, child-three) each with a title and date field in frontmatter, e.g.:
---
title: Child one
date: 28-12-2024 14:18
---
Child one test page.
---
The remaining two child pages are in exactly the same format.
Steps to reproduce:
- download Grav Core (I’m using 1.7.48)
- download my test files
- unzip both and open the Grav homepage in a browser
- in my test files open the ‘EU-date-format’ folder and drop test.html.twig into /users/themes/quark/templates and the 03.child-test folder into /user/pages
With the files as they are (untouched) Child three is missing from the date range listing.
The date field of Child three reads date: 31-12-2024 13:53
With a text editor edit the date field of Child three to read date: 31-12-2024
and it appears in the date range listing!
Further observations re. Child three:
- change the date to a day earlier - still with no time:
date: 30-12-2024
- and it lists as expected - add a time
date: 30-12-2024 14:43
and it still lists as expected - change the date to 31 December:
date: 31-12-2024 14:43
and it disappears again from the date range listing.
This is not expected behaviour - but only occurs when using EU date formats DD-MM-YYYY.
My test folder contains duplicates of the above files but in US date format (in the folder US-date-format) so you can swap them to test. Using US date formats the pages list as they should.
I’d be grateful if you could test and confirm results.