** just need some pointers **
Add the column heading in the template area where the other column headings are defined:
code:
<TR>
<TH>Action</TH>
<% if ($search) { %>
<TH>ID</TH>
<TH>Next Occurrence</TH>
<% } else { %>
<TH>Start Date - Time</TH>
<% } %>
<TH>Event Title</TH>
</TR>
Add the extra column TD before the </TR>
code:
<TD><FONT SIZE="-1"><%if($recurrence_id| |$recurrence_type){%><FONT COLOR="red">*</FONT><%}%><%= $title %> </FONT></TD>
</TR>
Make sure any other references to that table's column width are updated with the new width value. Eg
code:
<TD COLSPAN="4" ALIGN="center">No Events</TD>
Dan O.
------------------