Index: openacs-4/packages/acs-templating/tcl/tag-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/tag-procs.tcl,v diff -u -r1.16 -r1.17 --- openacs-4/packages/acs-templating/tcl/tag-procs.tcl 18 Nov 2012 18:47:20 -0000 1.16 +++ openacs-4/packages/acs-templating/tcl/tag-procs.tcl 14 Feb 2013 15:15:04 -0000 1.17 @@ -86,7 +86,8 @@ # I'm not sure why we need to eval here at all, there ought to be another solution, # but it's not clear what the intention of below statement is. - set tokens [eval [concat list [join $tokens " "]]] + set tokens [join $tokens " "] + #set tokens [eval [concat list [join $tokens " "]]] return $tokens }