Index: openacs-4/packages/acs-subsite/www/shared/community-member-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/shared/community-member-oracle.xql,v diff -u -N --- openacs-4/packages/acs-subsite/www/shared/community-member-oracle.xql 13 Jan 2005 13:55:50 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,15 +0,0 @@ - - -oracle8.1.6 - - - - select at.pretty_name, at.pretty_plural, a.creation_date, acs_object.name(a.object_id) as object_name - from acs_objects a, acs_object_types at - where a.object_type = at.object_type - and a.creation_user = :user_id - order by at.pretty_name, creation_date desc - - - - Index: openacs-4/packages/acs-subsite/www/shared/community-member-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/www/shared/community-member-postgresql.xql,v diff -u -N --- openacs-4/packages/acs-subsite/www/shared/community-member-postgresql.xql 13 Jan 2005 13:55:50 -0000 1.4 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,16 +0,0 @@ - - -postgresql7.1 - - - - select at.pretty_name, at.pretty_plural, a.creation_date, acs_object__name(a.object_id) as object_name - from acs_objects a, acs_object_types at - where a.object_type = at.object_type - and a.creation_user = :user_id - order by at.pretty_name, creation_date desc - - - - -