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.489 -r1.490 --- openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 7 Aug 2017 23:48:30 -0000 1.489 +++ openacs-4/packages/xowiki/tcl/xowiki-procs.tcl 18 Aug 2017 07:48:47 -0000 1.490 @@ -1243,7 +1243,13 @@ return 0 } FormPage instproc is_link_page {} { - return [expr {[[my page_template] name] eq "en:link.form"}] + # + # Make sure, the page_template is instantiated + # + if {[llength [info commands ${:page_template}]] == 0} { + ::xo::db::CrClass get_instance_from_db -item_id ${:page_template} + } + return [expr {[${:page_template} name] eq "en:link.form"}] } #