Index: openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl,v diff -u -r1.116 -r1.117 --- openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl 22 May 2015 08:54:42 -0000 1.116 +++ openacs-4/packages/acs-tcl/tcl/request-processor-procs.tcl 15 Jun 2015 11:20:16 -0000 1.117 @@ -427,14 +427,14 @@ # Create the table header. set list " - - + + " # Loop through the files, adding a row to the table for each. foreach file [lsort [glob -nocomplain $dir/*]] { set tail [file tail $file] - set link "$tail" + set link "[ns_quotethml $tail]" # Build the stat array containing information about the file. file stat $file stat @@ -443,7 +443,7 @@ set time [clock format $mtime -format "%d-%h-%Y %H:%M"] # Write out the row. - append list "\n" + append list "\n" } append list "
FileSizeDate
..
FileSizeDate
..
$link$size$time
$link$size$time
" return $list