Bug in get_date_archive_crumbs(…)
-
I found a bug in the function get_date_archive_crumbs(…), file HAG_Crumb.php. The problem is in the line 400:
... $date = new DateTime(get_the_date()); ...
this seems just to work with the english date-time format but not with the german as I use it. F.e. “14. Februar 2013”. I solved it by change it as the following:
... $date = new DateTime(get_the_date('Y-m-d')); ...
maybe you want to add this fix for your next update.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Bug in get_date_archive_crumbs(…)’ is closed to new replies.