Index: openacs-4/packages/acs-templating/tcl/list-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/list-procs.tcl,v diff -u -r1.59 -r1.60 --- openacs-4/packages/acs-templating/tcl/list-procs.tcl 27 Apr 2015 15:28:18 -0000 1.59 +++ openacs-4/packages/acs-templating/tcl/list-procs.tcl 22 Jun 2015 21:03:13 -0000 1.60 @@ -2219,22 +2219,22 @@ set link_url {} set link_html {} - if { ([info exists element_properties(link_url_col)] && $element_properties(link_url_col) ne "") } { + if { [info exists element_properties(link_url_col)] && $element_properties(link_url_col) ne "" } { set link_url "@$multirow.$element_properties(link_url_col)@" - } elseif { ([info exists element_properties(link_url)] && $element_properties(link_url) ne "") } { + } elseif { [info exists element_properties(link_url)] && $element_properties(link_url) ne "" } { set link_url $element_properties(link_url) } - if { ([info exists element_properties(link_html_col)] && $element_properties(link_html_col) ne "") } { + if { [info exists element_properties(link_html_col)] && $element_properties(link_html_col) ne "" } { set link_html "@$multirow.$element_properties(link_html_col)@" - } elseif { ([info exists element_properties(link_html)] && $element_properties(link_html) ne "") } { + } elseif { [info exists element_properties(link_html)] && $element_properties(link_html) ne "" } { set link_html $element_properties(link_html) } if { $link_url ne "" } { set old_output $output - set output "$old_output$old_output" + set output [subst {$old_output$old_output}] } return $output