Index: openacs-4/packages/acs-content-repository/sql/oracle/content-item.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/sql/oracle/content-item.sql,v diff -u -r1.9 -r1.10 --- openacs-4/packages/acs-content-repository/sql/oracle/content-item.sql 12 May 2002 20:57:01 -0000 1.9 +++ openacs-4/packages/acs-content-repository/sql/oracle/content-item.sql 25 May 2002 14:30:02 -0000 1.10 @@ -1680,28 +1680,6 @@ return null; end get_parent_folder; -procedure update_last_modified ( - item_id in cr_items.item_id%TYPE, - last_modified in acs_objects.last_modified%TYPE default sysdate -) -is - v_parent_id cr_items.parent_id%TYPE; -begin - update acs_objects - set acs_objects.last_modified = content_item.update_last_modified.last_modified - where acs_objects.object_id = content_item.update_last_modified.item_id; - - select cr_items.parent_id - into v_parent_id - from cr_items - where cr_items.item_id = content_item.update_last_modified.item_id; - - content_item.update_last_modified(v_parent_id, content_item.update_last_modified.last_modified); - - exception when NO_DATA_FOUND then - null; -end update_last_modified; - end content_item; / show errors