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.23 -r1.542.2.24 --- openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 21 May 2019 11:46:03 -0000 1.542.2.23 +++ openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 24 May 2019 17:35:13 -0000 1.542.2.24 @@ -674,10 +674,18 @@ # Therefore, we rename anonymous entries during export to # ip_address:port/item_id # - set old_name ${:name} set server [ns_info server] set port [ns_config ns/server/${server}/module/nssock port] - set :name [ns_info address]:${port}-${:item_id} + set new_name [ns_info address]:${port}-${:item_id} + } + + if {[info exists new_name]} { + # + # We have a new name, so patch this locally to get it into the + # serialized content. + # + set old_name ${:name} + set :name $new_name set content [:serialize_relocatable] set :name $old_name } else {