summaryrefslogtreecommitdiff
path: root/lib/VNDB/Handler/VNBrowse.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2008-12-13 12:39:50 +0100
committerYorhel <git@yorhel.nl>2008-12-13 12:39:50 +0100
commit11a47ae888c3673bb63b5b9d17231c64ee946ce0 (patch)
tree325c0e21ddaf9eada30c0020a2182083174f6de7 /lib/VNDB/Handler/VNBrowse.pm
parentc43507446c615c1edc7077c5942fec08ae842cd8 (diff)
Fixed HTML bug with the VN search filters
Diffstat (limited to 'lib/VNDB/Handler/VNBrowse.pm')
-rw-r--r--lib/VNDB/Handler/VNBrowse.pm50
1 files changed, 25 insertions, 25 deletions
diff --git a/lib/VNDB/Handler/VNBrowse.pm b/lib/VNDB/Handler/VNBrowse.pm
index 69ee30a5..c867b550 100644
--- a/lib/VNDB/Handler/VNBrowse.pm
+++ b/lib/VNDB/Handler/VNBrowse.pm
@@ -144,36 +144,36 @@ sub _filters {
end;
end if $c !~ /[gph]/;
}
+ end;
- h2;
- lit 'Languages <p>(boolean or, selecting more gives more results)</p>';
- end;
- for(sort @{$self->dbLanguages}) {
- span;
- input type => 'checkbox', id => "lang_$_";
- label for => "lang_$_";
- cssicon "lang $_", $self->{languages}{$_};
- txt $self->{languages}{$_};
- end;
+ h2;
+ lit 'Languages <p>(boolean or, selecting more gives more results)</p>';
+ end;
+ for(sort @{$self->dbLanguages}) {
+ span;
+ input type => 'checkbox', id => "lang_$_";
+ label for => "lang_$_";
+ cssicon "lang $_", $self->{languages}{$_};
+ txt $self->{languages}{$_};
end;
- }
+ end;
+ }
- h2;
- lit 'Platforms <p>(boolean or, selecting more gives more results)</p>';
- end;
- for(sort keys %{$self->{platforms}}) {
- next if $_ eq 'oth';
- span;
- input type => 'checkbox', id => "plat_$_";
- label for => "plat_$_";
- cssicon $_, $self->{platforms}{$_};
- txt $self->{platforms}{$_};
- end;
+ h2;
+ lit 'Platforms <p>(boolean or, selecting more gives more results)</p>';
+ end;
+ for(sort keys %{$self->{platforms}}) {
+ next if $_ eq 'oth';
+ span;
+ input type => 'checkbox', id => "plat_$_";
+ label for => "plat_$_";
+ cssicon $_, $self->{platforms}{$_};
+ txt $self->{platforms}{$_};
end;
- }
+ end;
+ }
- clearfloat;
- end;
+ clearfloat;
end;
end;
}