I thought I got it from much2, but I guess not. Here is the code:
<!--#include file="preferences.pl"-->
<%
&getEvents( {'duration'=>$in{duration}} );
$DAY = $Grid->{'grid'}->[0]->[0];
$EVENTS = $DAY->{events};
$total_events=0;
%>
<DL>
<%FOREACH EVENTLIST%>
<%IF EVENTS EXIST%>
<%$total_events++;%>
<DT><B><%=$DAY->{dayname}%>, <%=$DAY->{monthname}%> <%=$DAY->{dd}%></B>
<DD>
<%FOREACH EVENT%>
<% if ($_SHOW_GRID_EVENT_BULLET) {%>•<%}%>
<% if ($_SHOW_EVENT_TIMES eq "ALL" || $_SHOW_EVENT_TIMES eq "START") { %>
<% 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'})) { %> : <% } %>
<h2><%= EVENT FIELD(title) %></h2>
<%= # $EVENT->{'details'}->{'title'} %><BR>
<%= EVENT FIELD(description) %><br />
<%/FOREACH%><BR>
<%/IF%>
<%/FOREACH%>
</DL>
<%unless($total_events){%>
<CENTER><I><%= $_NO_EVENTS_LABEL %></I></CENTER>
<% } %>
This is the code that passes the description(which is including the 1)
<%= EVENT FIELD(description) %>
I don't see how the template can possibly be passing the 1.