Index: openacs-4/packages/calendar/www/cal-item.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/www/Attic/cal-item.tcl,v diff -u -r1.1 -r1.2 --- openacs-4/packages/calendar/www/cal-item.tcl 23 Apr 2001 23:09:38 -0000 1.1 +++ openacs-4/packages/calendar/www/cal-item.tcl 15 Sep 2001 07:14:32 -0000 1.2 @@ -48,10 +48,9 @@ if {$date == "now"} { set start_date "now" } else { - set start_date $date + set start_date $date } - #------------------------------------------------ # check the permission on the party to the object # then set up the variable to the template @@ -78,8 +77,8 @@ # get data time db_1row get_item_data { - select to_char(start_date, 'MM/DD/YYYY') as start_date, - to_char(start_date, 'HH24:MI') as start_time, + select to_char(start_date,'HH24:MI')as start_time, + to_char(start_date, 'MM/DD/YYYY') as start_date, to_char(end_date, 'HH24:MI') as end_time, nvl(a. name, e.name) as name, nvl(e.description, a.description) as description @@ -146,4 +145,3 @@ -