--- Slim/Web/Setup.pm 2005-03-30 02:00:00.000000000 -0800 +++ server/Slim/Web/Setup.pm 2005-03-30 13:17:55.343750000 -0800 @@ -1477,7 +1471,7 @@ sub initSetupConfig { my $formatslistref = Slim::Player::Source::Conversions(); foreach my $formats (sort {$a cmp $b}(keys %{$formatslistref})) { - next if $formats eq 'mp3-lame-*-*'; + next if $formats =~ /\-transcode\-/; my $oldVal = exists $formats{$formats} ? 0 : (Slim::Player::Source::checkBin($formats) ? 1 : 0); if (exists $paramref->{"formatslist$i"} && $paramref->{"formatslist$i"} == $oldVal) { delete $paramref->{"formatslist$i"}; @@ -1493,7 +1487,7 @@ sub initSetupConfig { Slim::Utils::Prefs::delete('disabledformats'); my $formatslistref = Slim::Player::Source::Conversions(); foreach my $formats (sort {$a cmp $b}(keys %{$formatslistref})) { - next if $formats eq 'mp3-lame-*-*'; + next if $formats =~ /\-transcode\-/; my $binAvailable = Slim::Player::Source::checkBin($formats); # First time through, set the value of the checkbox @@ -1561,7 +1555,7 @@ sub initSetupConfig { if ($key =~ /\D+(\d+)$/) { my $formatslistref = Slim::Player::Source::Conversions(); - my $profile = (sort {$a cmp $b} (grep {$_ ne 'mp3-lame-*-*'} (keys %{$formatslistref})))[$1]; + my $profile = (sort {$a cmp $b} (grep {$_ !~ /transcode/} (keys %{$formatslistref})))[$1]; my @profileitems = split('-', $profile); pop @profileitems; # drop ID $profileitems[0] = string($profileitems[0]);