Index: openacs-4/packages/acs-subsite/tcl/plsql-utility-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/tcl/plsql-utility-procs.tcl,v diff -u -r1.5 -r1.6 --- openacs-4/packages/acs-subsite/tcl/plsql-utility-procs.tcl 27 Jan 2018 16:19:08 -0000 1.5 +++ openacs-4/packages/acs-subsite/tcl/plsql-utility-procs.tcl 26 Apr 2018 08:56:37 -0000 1.6 @@ -219,7 +219,7 @@ @creation-date 11/2000 } { - set pieces [list] + set pieces {} foreach triple $attr_list { set table [string toupper [string trim [lindex $triple 0]]] set attr [string toupper [string trim [lindex $triple 1]]] @@ -246,7 +246,7 @@ @creation-date 11/2000 } { - set the_list [list] + set the_list {} foreach row $attr_list { lappend the_list [list [lindex $row 1] [lindex $row 3]] } @@ -264,7 +264,7 @@ @creation-date 11/2000 } { - set pieces [list] + set pieces {} foreach row $pairs { set attr [string trim [lindex $row 0]] set attr_value [string trim [lindex $row 1]] @@ -292,7 +292,7 @@ } { set ignore [string toupper $ignore] - set this_columns [list] + set this_columns {} set table_name [string toupper [string trim $table_name]] foreach triple $attr_list { set table [string toupper [string trim [lindex $triple 0]]]