Index: openacs-4/packages/xowiki/tcl/xowiki-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-procs.tcl,v diff -u -N -r1.542.2.102 -r1.542.2.103 --- openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 6 Mar 2021 14:24:36 -0000 1.542.2.102 +++ openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 14 Mar 2021 16:34:43 -0000 1.542.2.103 @@ -388,6 +388,7 @@ io.creation_date, io.creation_user, io.creation_ip, + ci.storage_type, o.security_inherit_p, o.last_modified, o.modifying_user, o.modifying_ip, cr.revision_id, cr.title, content_revision__get_content(ci.live_revision) AS text, @@ -401,7 +402,7 @@ xowiki_page.creator FROM xowiki_form_instance_item_index xi inner join acs_objects io on object_id = xi.item_id, - lateral (select live_revision from cr_items where item_id = xi.item_id) ci + lateral (select live_revision, storage_type from cr_items where item_id = xi.item_id) ci left join cr_revisions cr on (cr.revision_id = ci.live_revision) left join acs_objects o on (o.object_id = ci.live_revision) left join xowiki_page on (xowiki_page.page_id = ci.live_revision) @@ -417,6 +418,7 @@ io.creation_date, io.creation_user, io.creation_ip, + ci.storage_type, o.security_inherit_p, o.last_modified, o.modifying_user, o.modifying_ip, cr.revision_id, cr.title, content_revision__get_content(cr.revision_id) AS text,