[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#134471: listarchives: list filter is not in alphabetical order



Josip Rodin wrote:
> Actually it's sorted, but with the implied debian- prefix on the names.
> I.e.:
> 
>       for (sort keys %lists) {
>         s/^debian-//;
>         print OUT "<option>$_\n";
>       }

for (sort map { s/^debian-//; $_ } keys %lists) {
	print OUT "<option>$_\n";
}

-- 
see shy jo



Reply to: