Index: openacs-4/packages/notifications/sql/oracle/notifications-replies-package-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/sql/oracle/notifications-replies-package-create.sql,v diff -u -r1.2 -r1.3 --- openacs-4/packages/notifications/sql/oracle/notifications-replies-package-create.sql 9 Aug 2002 20:51:49 -0000 1.2 +++ openacs-4/packages/notifications/sql/oracle/notifications-replies-package-create.sql 30 Sep 2003 12:10:08 -0000 1.3 @@ -27,7 +27,7 @@ context_id in acs_objects.context_id%TYPE default null ) return notification_replies.reply_id%TYPE; - procedure delete ( + procedure del ( reply_id in notification_replies.reply_id%TYPE ); end notification_reply; @@ -70,13 +70,13 @@ return v_reply_id; end new; - procedure delete ( + procedure del ( reply_id in notification_replies.reply_id%TYPE ) is begin - acs_object.delete(object_id => reply_id); - end delete; + acs_object.del(object_id => reply_id); + end del; end notification_reply; /