This is a continuation of a previous post as I’ve now narrowed it down to what I’m sure is a bug.
Notes:
- the following steps have been carried out on on fresh installs of 1.7.48 and 1.8.0-beta.4 with no extras (no admin plugin, no additional plugins and only the default Quark theme).
- I’m using EU date and time formats (dash separators, 24-hour clock without am/pm) but have tested both formats in page frontmatter and twig date ranges. The results are the same.
- all edits were made with a text editor - i.e. no admin plugin.
Steps to reproduce:
- unzip Grav download (and enable the debugger in system.yaml)
- edit /user/themes/quark/templates/default.html.twig and add dump line in content block:
{{ dump(page.collection.dateRange('01-01-2024', '31-12-2024')) }}
- to make it easier to read, I also added a simple listing, so that default.html.twig looks like this:
{% extends 'partials/base.html.twig' %}
{% block content %}
{{ dump(page.collection.dateRange('01-01-2024', '31-12-2024')) }}
{{ page.content|raw }}
<p>2024 page listing</p>
<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 %}
- add new page collection. I called it Child test, folder name
03.child-test
containing default.md which looks like this:
---
title: Child test
content:
items:
'@self.children'
---
- create 3 child pages inside 03.child-test i.e. 3 directories called child-one, child-two, child-three - each one containing one file called default.md with the following frontmatter:
---
title: Child one
date: 28-12-2024
---
---
title: Child two
date: 29-12-2024
---
---
title: Child three
date: 30-12-2024
---
Then open the site in a browser. In the menu you’ll see ‘Child test’ - click that and you’ll see all 3 pages listed (in date order, newest first).
Clockwork lists all 3 pages in its array:
Array(1) object: Grav\Common\Page\Collection
object: Grav\Common\Page\Collection
*items: Array(3)
/Users/simfin/Public/PHPServer/Grav-testing/user/pages/03.child-test/child-one: Array(1)
/Users/simfin/Public/PHPServer/Grav-testing/user/pages/03.child-test/child-three: Array(1)
/Users/simfin/Public/PHPServer/Grav-testing/user/pages/03.child-test/child-two: Array(1)
~iteratorUnset: false
*pages: Grav\Common\Page\Pages
*params: Array(2)
So far so good.
Now add a time to all 3 ‘child’ pages - in either 12-hour (with am/pm) or 24-hour format - so the 3 child page frontmatters now look like this:
---
title: Child one
date: 28-12-2024 13:45
---
---
title: Child two
date: 29-12-2024 08:15
---
---
title: Child three
date: 30-12-2024 19:02
---
Reload the Child test page and you’ll see that Child three (the last page in the listing) has disappeared from the listing.
The page is also missing from Clockwork’s array:
Array(1) object: Grav\Common\Page\Collection
object: Grav\Common\Page\Collection
*items: Array(2)
/Users/simfin/Public/PHPServer/Grav-testing/user/pages/03.child-test/child-one: Array(1)
/Users/simfin/Public/PHPServer/Grav-testing/user/pages/03.child-test/child-two: Array(1)
~iteratorUnset: false
*pages: Grav\Common\Page\Pages
*params: Array(2)
Now delete the time from Child three’s date field, reload your browser - and it appears again.
This happens no matter which time format or whether the time is before or after the date.
I have tested this with other date ranges with the same results.