Index: openacs-4/packages/wp-slim/sql/oracle/wp-slim-drop.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/wp-slim/sql/oracle/wp-slim-drop.sql,v diff -u -N -r1.4 -r1.5 --- openacs-4/packages/wp-slim/sql/oracle/wp-slim-drop.sql 28 Aug 2003 09:41:59 -0000 1.4 +++ openacs-4/packages/wp-slim/sql/oracle/wp-slim-drop.sql 30 Sep 2003 12:10:12 -0000 1.5 @@ -21,7 +21,7 @@ begin for c in v_attach_cursor loop - content_item.delete(c.item_id); + content_item.del(c.item_id); end loop; end; @@ -88,19 +88,19 @@ begin for c in v_slide_clob_cursor loop - content_item.delete(c.item_id); + content_item.del(c.item_id); end loop; for c in v_slide_cursor loop - content_item.delete(c.item_id); + content_item.del(c.item_id); end loop; for c in v_pres_clob_cursor loop - content_item.delete(c.item_id); + content_item.del(c.item_id); end loop; for c in v_pres_cursor loop - content_item.delete(c.item_id); + content_item.del(c.item_id); end loop; end;