Index: openacs-4/contrib/packages/project-manager/www/lib/entries-table-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/packages/project-manager/www/lib/Attic/entries-table-postgresql.xql,v diff -u -r1.2 -r1.3 --- openacs-4/contrib/packages/project-manager/www/lib/entries-table-postgresql.xql 12 Mar 2004 13:44:46 -0000 1.2 +++ openacs-4/contrib/packages/project-manager/www/lib/entries-table-postgresql.xql 3 Jun 2004 21:32:17 -0000 1.3 @@ -15,7 +15,7 @@ le.value, le.description, task.title as project_name, - submitter.user_id, + submitter.person_id as user_id, submitter.first_names || ' ' || submitter.last_name as user_name FROM logger_entries le @@ -32,11 +32,11 @@ ON le.entry_id = task.logger_entry, logger_projects lp, acs_objects ao, - acs_users_all submitter + persons submitter WHERE le.project_id = lp.project_id and ao.object_id = le.entry_id and - ao.creation_user = submitter.user_id + ao.creation_user = submitter.person_id [ad_decode $where_clauses "" "" "and [join $where_clauses "\n and "]"] ORDER BY $order_by