Date Fix in Archive Module
The archive.module contains a surprising line which makes it imposible to search the archive for items of the current year.
$years = drupal_map_assoc(range(2000, 2005));
I changed this based on a hint given by joshb to:
$years = drupal_map_assoc(range(2004, date('Y')));
So searching the archive should be possible for the years to come. Of course, it would be even better to determine the starting year by the earliest post of the site.
Trackback-URL dieses Beitrags:
http://souvenirs.jotefa.de/tra ckback/30

