How to select articles based on the date of their publishing?
<BOUCLE_dates (ARTICLES) {date}>
....
</BOUCLE_dates>
while having "?page=search&date=2007/4/4" or "?page=search&date=2007-04-04" in the URL does not work.
Marko
How to select articles based on the date of their publishing?
<BOUCLE_dates (ARTICLES) {date}>
....
</BOUCLE_dates>
while having "?page=search&date=2007/4/4" or "?page=search&date=2007-04-04" in the URL does not work.
Marko
Marko Pekic wrote:
How to select articles based on the date of their publishing?
...
"?page=search&date=2007-04-04"
Try using this and something like
{date=#ENV{date}}
as the criterium
Paolo
Paolo wrote:
Try using this and something like
{date=#ENV{date}}
as the criterium
Nope, it does't work.
I tried (for testing purposes) to use directly something like {date="2007/5/15"}, but it does not return articles from the day.
Marko
Paolo wrote:
Try using this and something like
{date=#ENV{date}}
as the criterium
It works by using the form {date=="2007-05-15"}, I've just found it out.
Marko