Index: openacs-4/packages/calendar/www/cal-options-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/calendar/www/cal-options-postgresql.xql,v diff -u -N -r1.2 -r1.3 --- openacs-4/packages/calendar/www/cal-options-postgresql.xql 5 Sep 2001 09:59:12 -0000 1.2 +++ openacs-4/packages/calendar/www/cal-options-postgresql.xql 6 Sep 2001 06:30:43 -0000 1.3 @@ -9,7 +9,7 @@ select distinct(calendar_id) as calendar_id, calendar_name, - ' ' as checked_p + ' '::varchar as checked_p from calendars where acs_permission__permission_p(calendar_id, :user_id, 'calendar_read') = 't' and acs_permission__permission_p(calendar_id, :user_id, 'calendar_show') = 't' @@ -19,7 +19,7 @@ select distinct(on_which_calendar) as calendar_id, calendar__name(on_which_calendar) as calendar_name, - ' ' as checked_p + ' '::varchar as checked_p from cal_items where acs_permission__permission_p(cal_item_id, :user_id, 'cal_item_read') = 't' and calendar__private_p(on_which_calendar) = 'f'