Index: openacs-4/packages/file-storage/www/file-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-storage/www/Attic/file-postgresql.xql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/file-storage/www/file-postgresql.xql 16 Aug 2001 20:33:11 -0000 1.1 +++ openacs-4/packages/file-storage/www/file-postgresql.xql 20 Aug 2001 17:31:14 -0000 1.2 @@ -31,8 +31,7 @@ r.description, acs_permission__permission_p(r.revision_id,:user_id,'admin') as admin_p, acs_permission__permission_p(r.revision_id,:user_id,'delete') as delete_p, - -- dbms_lob.getlength(r.content) as content_size - r.content_length as content_size + lob_length(r.lob) as content_size from acs_objects o, cr_revisions r where o.object_id = r.revision_id and acs_permission__permission_p(r.revision_id, :user_id, 'read') = 't'