Forum OpenACS Development: acs-repository / press type question

Content-item.new creates a new acs object making item_subtype
equal to object_type:

  v_item_id := acs_object.new(
      object_id         => content_item.new.item_id,
      object_type       => content_item.new.item_subtype, 
      context_id        => v_context_id,
      creation_date     => content_item.new.creation_date, 
      creation_user     => content_item.new.creation_user, 
      creation_ip       => content_item.new.creation_ip 
  );

In the press package

item_subtype defaults to 'content_item'
content_type defaults to 'press'

so the new acs_object has object type equal to 'content_item' instead of 'press'

Is that correct?