Index: openacs-4/packages/curriculum-central/tcl/stream-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/curriculum-central/tcl/stream-procs.tcl,v diff -u -r1.7 -r1.8 --- openacs-4/packages/curriculum-central/tcl/stream-procs.tcl 16 Feb 2006 10:44:17 -0000 1.7 +++ openacs-4/packages/curriculum-central/tcl/stream-procs.tcl 16 Mar 2006 01:45:50 -0000 1.8 @@ -47,10 +47,14 @@ # Create an empty option that the user can select. The value of # which is an empty string. - set empty_option [list [list [list [_ curriculum-central.none]] 0]] - set year_list [db_list_of_lists years {}] + set year_list [list [list [_ curriculum-central.none] 0]] + db_foreach years {} { + set year_name [lang::util::localize $name] - return [concat $empty_option $year_list] + lappend year_list [list $year_name $year_id] + } + + return $year_list }