OK, Here's what does what I was trying to do - well, it seems to work. If anyone sees a problem with it I would appreciate them letting me know:
I replaced
<% if ($EVENT->{'schedule'}->{'start_time'}) { %><%= SCHEDULE FIELD(start_time) %><% } %>
<% } %>
<% if ($_SHOW_EVENT_TIMES eq "ALL") { %>
<% if ($EVENT->{'schedule'}->{'end_time'}) { %>-<%= SCHEDULE FIELD(end_time) %><% } %>
<% } %>
<% if (($_SHOW_EVENT_TIMES eq "ALL" | | $_SHOW_EVENT_TIMES eq "START") && ($EVENT->{'schedule'}->{'start_time'})) { %> : <% } %>
With
<% if ($EVENT->{'schedule'}->{'all_day'} == "1") { print "All Day, " }
else
{
if ($EVENT->{'schedule'}->{'start_time'}) {
print &Date::formatTime($EVENT->{'schedule'}->{'start_time'}, $Config->get(time_format)) }
if ($EVENT->{'schedule'}->{'end_time'} ne $EVENT->{'schedule'}->{'start_time'}) {
print " - ", &Date::formatTime($EVENT->{'schedule'}->{'end_time'}, $Config->get(time_format)) }
}
%>
------------------
[This message has been edited by rob (edited June 19, 2003).]