Index: openacs-4/packages/assessment/sql/oracle/assessment-actions-package-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/assessment/sql/oracle/assessment-actions-package-create.sql,v diff -u -r1.2 -r1.3 --- openacs-4/packages/assessment/sql/oracle/assessment-actions-package-create.sql 15 Feb 2005 17:09:06 -0000 1.2 +++ openacs-4/packages/assessment/sql/oracle/assessment-actions-package-create.sql 18 Feb 2005 15:30:20 -0000 1.3 @@ -57,7 +57,7 @@ creation_user in acs_objects.creation_user%TYPE ) return as_actions.action_id%TYPE; procedure delete ( - action_id in as_actions.action_id%TYPE + v_action_id in as_actions.action_id%TYPE ); procedure default_actions ( context_id in acs_objects.context_id%TYPE, @@ -99,13 +99,13 @@ procedure delete ( - action_id as_actions.action_id%TYPE + v_action_id as_actions.action_id%TYPE ) is begin - delete from as_action_params where action_id=action_id; - delete from as_actions where action_id = action_id; - acs_object.del(as_action.delete.action_id); + delete from as_action_params where action_id=v_action_id; + delete from as_actions where action_id = v_action_id; + acs_object.del(as_action.delete.v_action_id); end delete;