Index: openacs-4/packages/xowiki/tcl/includelet-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/includelet-procs.tcl,v diff -u -r1.239.2.63 -r1.239.2.64 --- openacs-4/packages/xowiki/tcl/includelet-procs.tcl 24 Mar 2021 10:09:51 -0000 1.239.2.63 +++ openacs-4/packages/xowiki/tcl/includelet-procs.tcl 24 Mar 2021 10:14:58 -0000 1.239.2.64 @@ -4663,10 +4663,19 @@ iframe instproc render {} { :get_parameters - if {$title eq ""} {set title $url} - set content "" - append content "

[ns_quotehtml $title]

" - return $content + if {$title eq ""} { + set title $url + } + + set url [ns_quotehtml $url] + set title [ns_quotehtml $title] + set width [ns_quotehtml $width] + set height [ns_quotehtml $height] + + return [subst -nocommands { + +

${title}

+ } } }