All converted events have end timestamps of 0 - these caused a myriad of gmdate() warnings for me about invalid timestamps. Adding
if ($timestamp == 0) {
return '';
}
to the beginning of _event_date() fixed things nicely.
All converted events have end timestamps of 0 - these caused a myriad of gmdate() warnings for me about invalid timestamps. Adding
if ($timestamp == 0) {
return '';
}
to the beginning of _event_date() fixed things nicely.
Comments
Comment #1
crunchywelch commentedhttp://drupal.org/node/20240