summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-09-26 09:13:40 +0200
committerYorhel <git@yorhel.nl>2009-09-26 09:13:40 +0200
commit78fb2b61fad774a2e8c1d28b0aa1364abd44ad43 (patch)
tree16bbd6a3e265843327ff3b98295993be3dfdc851 /lib
parentf4f8cdfa76f95ec3f9e0c60003d9f56aab8e04cb (diff)
Handler::Releases: Allow filtering on 'other' platform & media
Diffstat (limited to 'lib')
-rw-r--r--lib/VNDB/Handler/Releases.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/VNDB/Handler/Releases.pm b/lib/VNDB/Handler/Releases.pm
index 032840b5..d916e056 100644
--- a/lib/VNDB/Handler/Releases.pm
+++ b/lib/VNDB/Handler/Releases.pm
@@ -644,7 +644,6 @@ sub _filters {
b ' ('.mt('_rbrowse_boolor').')';
end;
for my $i (sort @{$self->{platforms}}) {
- next if $i eq 'oth';
span;
input type => 'checkbox', name => 'pl', value => $i, id => "plat_$i", grep($_ eq $i, @{$f->{pl}}) ? (checked => 'checked') : ();
label for => "plat_$i";
@@ -659,7 +658,6 @@ sub _filters {
b ' ('.mt('_rbrowse_boolor').')';
end;
for my $i (sort keys %{$self->{media}}) {
- next if $i eq 'otc';
span;
input type => 'checkbox', name => 'me', value => $i, id => "med_$i", grep($_ eq $i, @{$f->{me}}) ? (checked => 'checked') : ();
label for => "med_$i", $self->{media}{$i}[0];