From http://bugs.gentoo.org/: <li id="todaysbugs"><a href="/buglist.cgi?query_format=advanced&chfieldfrom=2008-06-04+19:28&chfieldto=2008-06-05 19:28&chfield=%5BBug+creation%5D&order=bugs.bug_id">View Bugs Reported in the last 24 hours</a></li> <li id="todaysbugs"><a href="/buglist.cgi?query_format=advanced&chfieldfrom=2008-06-05+07:28&chfieldto=2008-06-05 19:28&chfield=%5BBug+creation%5D&order=bugs.bug_id">View Bugs Reported in the last 12 hours</a></li> Do you see how the chfieldfrom date and time are separated by +, while the chfieldto date and time are separated by a space? Could you please make it a plus for both? It's invalid and breaks dillo, which instead of inserting %20 just drops the space, causing bugzie to report that the date string is invalid.
The HTML contains this presently: <li id="todaysbugs"><a href="/buglist.cgi?query_format=advanced&chfieldfrom=2008-08-19+21:17&chfieldto=2008-08-20 21:17&chfield=%5BBug+creation%5D&order=bugs.bug_id">View Bugs Reported in the last 24 hours</a></li> I think your browser may have been mucking it up.
"chfieldto=2008-08-20 21:17" is the problem... That's an unencoded space in the URL right there, which is invalid. It's not a browser bug, though it is unusual browser behaviour.
test again, make sure you refresh.
That's the source for the block: [% USE date %] [% dn = date.now %] [% d24ago = dn - 3600*24 %] [% d12ago = dn - 3600*12 %] [% tn = date.format(dn, '%Y-%m-%d+%H:%M') %] [% t24ago = date.format(d24ago, '%Y-%m-%d+%H:%M') %] [% t12ago = date.format(d12ago, '%Y-%m-%d+%H:%M') %] <li id="todaysbugs"><a href="/buglist.cgi?query_format=advanced&chfieldfrom=[% t24ago %]&chfieldto=[% tn %]&chfield=%5BBug+creation%5D&order=bugs.bug_id">View Bugs Reported in the last 24 hours</a></li> <li id="todaysbugs"><a href="/buglist.cgi?query_format=advanced&chfieldfrom=[% t12ago %]&chfieldto=[% tn %]&chfield=%5BBug+creation%5D&order=bugs.bug_id">View Bugs Reported in the last 12 hours</a></li>
Thanks, looking good now. Nice to be able to see that bug list in dillo :)