Index: openacs-4/packages/calendar/www/view-week-display-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/www/view-week-display-oracle.xql,v diff -u -r1.4 -r1.5 --- openacs-4/packages/calendar/www/view-week-display-oracle.xql 25 Sep 2003 23:11:12 -0000 1.4 +++ openacs-4/packages/calendar/www/view-week-display-oracle.xql 9 Jan 2004 23:11:23 -0000 1.5 @@ -17,10 +17,10 @@ -select to_char(start_date, :ansi_date_format) as ansi_start_date, - to_char(end_date, :ansi_date_format) as ansi_end_date, +select to_char(start_date, 'YYYY-MM-DD HH24:MI:SS') as ansi_start_date, + to_char(end_date, 'YYYY-MM-DD HH24:MI:SS') as ansi_end_date, trunc(start_date - to_date(:first_weekday_of_the_week_tz, - :ansi_date_format)) as day_of_week, + 'YYYY-MM-DD HH24:MI:SS')) as day_of_week, nvl(e.name, a.name) as name, nvl(e.status_summary, a.status_summary) as status_summary, e.event_id as item_id, @@ -37,8 +37,8 @@ and s.interval_id = t.interval_id and e.activity_id = a.activity_id and start_date between - to_date(:first_weekday_of_the_week_tz, :ansi_date_format) and - to_date(:last_weekday_of_the_week_tz, :ansi_date_format) + to_date(:first_weekday_of_the_week_tz, 'YYYY-MM-DD HH24:MI:SS') and + to_date(:last_weekday_of_the_week_tz, 'YYYY-MM-DD HH24:MI:SS') and cals.calendar_id = ci.on_which_calendar and e.event_id = ci.cal_item_id $calendars_clause