As a follow-up:
Earlier, I made the following changes to default.html in order to get the time and date to show on the Event View. Does the 'use Time::Local;' have any bearing on my not picking up the time_zone_offset?
elsif ($VIEW eq "Event") {
$EVENT->{'details'} = &getEvent($in{'event_id'});
$db = $main:
BSchedule;
use Time::Local;
$schedules = &Event::getEventsInRange($db,timegm(0,0,0,$DATE,$MONTH-1,$YEAR-1900),timegm(0,0,0,$DATE+1,$MONTH-1,$YEAR-1900)-1);
foreach (@$schedules) {
if ($_->{event_id} == $EVENT->{details}->{id}) {
$EVENT->{schedule} = $_;
$EVENT2->{'schedule'} = &getEvent2($in{'event_id'});
last;
}
}
$db = $main:
BEvents;
$fields = &main:
BGetFieldsInDisplayOrder($db);
}