Index: openacs-4/packages/acs-datetime/tcl/acs-calendar-2-procs-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-datetime/tcl/acs-calendar-2-procs-postgresql.xql,v diff -u -r1.4 -r1.4.2.1 --- openacs-4/packages/acs-datetime/tcl/acs-calendar-2-procs-postgresql.xql 25 Jul 2002 03:15:12 -0000 1.4 +++ openacs-4/packages/acs-datetime/tcl/acs-calendar-2-procs-postgresql.xql 21 Jan 2003 13:45:18 -0000 1.4.2.1 @@ -36,9 +36,9 @@ to_char(next_day(to_date(:current_date, 'yyyy-mm-dd')-7, 'Sunday') + 6,'J') as saturday_julian, :current_date::timestamp - '7 days'::timespan as last_week, -to_char(:current_date::timestamp - '7 days'::timespan, 'Month DD, YYYY') as last_week_pretty, +to_char(:current_date::timestamp - '7 days'::interval, 'Month DD, YYYY') as last_week_pretty, :current_date::timestamp + '7 days'::timespan as next_week, -to_char(:current_date::timestamp + '7 days'::timespan, 'Month DD, YYYY') as next_week_pretty +to_char(:current_date::timestamp + '7 days'::interval, 'Month DD, YYYY') as next_week_pretty from dual