Index: openacs-4/packages/acs-content-repository/sql/oracle/content-template.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-content-repository/sql/oracle/content-template.sql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/acs-content-repository/sql/oracle/content-template.sql 24 Mar 2001 22:00:48 -0000 1.1 +++ openacs-4/packages/acs-content-repository/sql/oracle/content-template.sql 7 Jul 2003 12:25:53 -0000 1.2 @@ -22,7 +22,9 @@ function new ( name in cr_items.name%TYPE, + text in varchar2 default null, parent_id in cr_items.parent_id%TYPE default null, + is_live in char default 't', template_id in cr_templates.template_id%TYPE default null, creation_date in acs_objects.creation_date%TYPE default sysdate, @@ -54,8 +56,10 @@ v_template_id := content_item.new ( item_id => content_template.new.template_id, name => content_template.new.name, + text => content_template.new.text, parent_id => v_parent_id, content_type => 'content_template', + is_live => content_template.new.is_live, creation_date => content_template.new.creation_date, creation_user => content_template.new.creation_user, creation_ip => content_template.new.creation_ip