Index: openacs-4/packages/user-tracking/www/contributions-chunk2-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/user-tracking/www/contributions-chunk2-postgresql.xql,v diff -u -N -r1.1 -r1.2 --- openacs-4/packages/user-tracking/www/contributions-chunk2-postgresql.xql 14 Apr 2005 15:44:27 -0000 1.1 +++ openacs-4/packages/user-tracking/www/contributions-chunk2-postgresql.xql 25 May 2006 13:31:53 -0000 1.2 @@ -52,14 +52,14 @@ - + - select count(*) from acs_objects a, acs_objects b - where b.object_id = :oneCom - and a.tree_sortkey between b.tree_sortkey - and tree_right(b.tree_sortkey) - and a.creation_user = :oneUser - and a.object_type = :object_type; + SELECT count(1) as result + FROM fs_files f,dotlrn_communities_full com,acs_objects o, acs_objects o2 + WHERE f.file_id = o.object_id + and com.community_id=:comm_id + and o.package_id= o2.object_id + and o2.context_id=com.package_id @@ -224,15 +224,15 @@ - + - select count(*) from acs_objects a, acs_objects b - where b.object_id = :oneCom - and a.tree_sortkey between b.tree_sortkey - and tree_right(b.tree_sortkey) - and a.object_type = :object_type; + select count(*) from acs_objects o, fs_files f, acs_objects o2, dotlrn_communities_full com + where f.file_id=o.object_id + and com.community_id= :oneCom + and o.package_id= o2.object_id + and o2.context_id=com.package_id - + \ No newline at end of file