Index: openacs-4/packages/xowiki/tcl/import-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/import-procs.tcl,v diff -u -r1.39 -r1.40 --- openacs-4/packages/xowiki/tcl/import-procs.tcl 18 May 2018 09:28:49 -0000 1.39 +++ openacs-4/packages/xowiki/tcl/import-procs.tcl 10 Jul 2018 07:47:08 -0000 1.40 @@ -287,7 +287,9 @@ # while {1} { set new 0 - ns_log notice "--export works on [array names items]" + if {[llength [array names items]] > 0} { + ns_log notice "--export works on [array names items]" + } foreach item_id [array names items] { # # We flag the reason, why the implicitly included elements were @@ -321,7 +323,9 @@ } } } - if {!$new} break + if {!$new} { + break + } } return [array names items] }