** Is it possible to sort events in a day by time added? **
For display on the calendar?
For that if you find the line(s) in the default.html template file:
<%FOREACH EVENT%>
You can try adding
code:
<% @$EVENTS = sort {$a->{details}->{time_added} <=> $b->{details}->{time_added} } @$EVENTS; %>
Immediately
before it.
This is untested so use at your own risk and be sure to keep a back up of original files just in case.
Dan O.
[This message has been edited by DanO (edited December 07, 2004).]