Index: openacs-4/packages/cms/sql/postgresql/cms-workflow.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/cms/sql/postgresql/cms-workflow.sql,v diff -u -r1.5 -r1.6 --- openacs-4/packages/cms/sql/postgresql/cms-workflow.sql 22 May 2001 22:46:13 -0000 1.5 +++ openacs-4/packages/cms/sql/postgresql/cms-workflow.sql 8 Jun 2001 01:44:53 -0000 1.6 @@ -462,7 +462,7 @@ if NOT FOUND then - raise EXCEPTION ''-20000, ''Bad transition key %'', p_transition_key; + raise EXCEPTION ''-20000: Bad transition key %'', p_transition_key; end if; return v_this_place; @@ -721,7 +721,7 @@ if v_task_state = ''started'' and v_holding_user != p_user_id then - raise EXCEPTION '' -20000:content_workflow.approve - Could not approve task because this task is checked out by someone else %'', v_holding_user; + raise EXCEPTION '' -20000: content_workflow.approve - Could not approve task because this task is checked out by someone else %'', v_holding_user; else if v_task_state != ''started'' and v_task_state != ''enabled'' then raise EXCEPTION '' -20000: content_workflow.approve - Could not approve task because this task is in an invalid state %'', v_task_state;