I was checking this out. We need something similar, but group by day, not month. It didn't work until I changed
$year = date('Y', strtotime($val));
$month = date('F', strtotime($val));
to
<?
$year = date('Y', $val);
$month = date('F', $val);
?>
I think you have written this module to use Date fields, and not datestamp fields, which are also available through the date field module. This could be easily checked with is_numeric($val).
Comments
Comment #1
Anonymous (not verified) commentedThis is finally fixed in version 1.3. It now supports both date fields and datestamp ones.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.