#use wml::std::tags # get_past_sec_list # Generates a flat comma separated list of previous years security advisories. sub get_past_sec_list { my $str = ''; for ($year = $(CUR_YEAR) ; $year >= 1998; $year--) { $str .=" $year," if -d "$(ENGLISHDIR)/security/$year"; } $str .= " 1997 and undated security advisories, included for posterity\.

"; return $str; }