The install function checks for the date_format_ical time format, but the equality check is in the wrong place:
function views_ical_install() {
if (variable_get('date_format_ical', '-1' == '-1')) {
variable_set('date_format_ical', 'Ymd\THi\0\0\Z');
}
}
but presumably it should be:
function views_ical_install() {
if (variable_get('date_format_ical', '-1') == '-1') {
variable_set('date_format_ical', 'Ymd\THi\0\0\Z');
}
}
i.e. with the check for equality to -1 with the returned value from variable_get. At the moment it will always be true.
Closed: outdated
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.