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.6 -r1.7 --- openacs-4/packages/assessment/sql/oracle/assessment-actions-package-create.sql 12 Jun 2006 02:49:50 -0000 1.6 +++ openacs-4/packages/assessment/sql/oracle/assessment-actions-package-create.sql 15 May 2007 20:14:16 -0000 1.7 @@ -56,8 +56,8 @@ context_id in acs_objects.context_id%TYPE, creation_user in acs_objects.creation_user%TYPE ) return as_actions.action_id%TYPE; - procedure delete ( - v_action_id in as_actions.action_id%TYPE + procedure del ( + action_id in as_actions.action_id%TYPE ); procedure default_actions ( context_id in acs_objects.context_id%TYPE, @@ -98,16 +98,16 @@ - procedure delete ( - v_action_id as_actions.action_id%TYPE + procedure del ( + action_id as_actions.action_id%TYPE ) is begin - 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); + delete from as_action_params where action_id=as_action.del.action_id; + delete from as_actions where action_id = as_action.del.action_id; + acs_object.del(as_action.del.action_id); - end delete; + end del; procedure default_actions (