Index: openacs-4/packages/xowiki/tcl/xowiki-form-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/xowiki-form-procs.tcl,v diff -u -r1.14 -r1.15 --- openacs-4/packages/xowiki/tcl/xowiki-form-procs.tcl 15 Sep 2006 16:45:00 -0000 1.14 +++ openacs-4/packages/xowiki/tcl/xowiki-form-procs.tcl 6 Nov 2006 18:37:38 -0000 1.15 @@ -184,7 +184,15 @@ } if {![$data istype ::xowiki::Object] && ![$data istype ::xowiki::PageTemplate] } { - ::xowiki::notification::do_notifications -page $data + if {[$data istype ::xowiki::PageInstance]} { + if {[$data set instance_attributes] ne ""} { + # fieldless page instances are not notified. problem? + #my log "--i instance_attributes = <[$data set instance_attributes]>" + ::xowiki::notification::do_notifications -page $data + } + } else { + ::xowiki::notification::do_notifications -page $data + } } }