Index: openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/workflow-case-package.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/workflow-case-package.sql,v diff -u -r1.17 -r1.18 --- openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/workflow-case-package.sql 6 Sep 2001 19:23:26 -0000 1.17 +++ openacs-4/contrib/obsolete-packages/acs-workflow/sql/postgresql/workflow-case-package.sql 9 Oct 2001 00:03:15 -0000 1.18 @@ -1609,15 +1609,25 @@ execute v_str; end if; - v_request_id := acs_mail_nt__post_request ( - v_party_from, -- party_from - notify_assignee__user_id, -- party_to - ''f'', -- expand_group - v_subject, -- subject - v_body, -- message - 0 -- max_retries - ); + -- NOTICE, NOTICE, NOTICE + -- + -- Since postgresql does not support out parameters, this + -- function call has been moved into the callback function. + -- If you implement a new notification callback, make sure + -- that this function call is included at the end of the + -- callback routine. + -- + -- DanW (dcwickstrom@earthlink.net) + -- v_request_id := acs_mail_nt__post_request ( + -- v_party_from, -- party_from + -- notify_assignee__user_id, -- party_to + -- ''f'', -- expand_group + -- v_subject, -- subject + -- v_body, -- message + -- 0 -- max_retries + --); + return 0; end;' language 'plpgsql';