summaryrefslogtreecommitdiff
path: root/lib/VNDB/Handler/VNBrowse.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2008-12-14 11:44:09 +0100
committerYorhel <git@yorhel.nl>2008-12-14 11:44:09 +0100
commitd85da4dfaa971c5244bc26d52ca517d6190f0fdb (patch)
tree45fcba1e07ee0707e366f0cf502dcfbac84a9c4c /lib/VNDB/Handler/VNBrowse.pm
parent930d2d4dd61bd93b47315eb8992bc745d0fa633a (diff)
Fixed all XHTML validation bugs I could find
With two exceptions: - Empty browse tables (/u1/list, /u3/hist, ..) - Empty <tbody> on /v+/edit and /v/new I'm not purist enough to work around those bugs. (well, maybe I'll fix the empty browse table thing, as it's not really user friendly either)
Diffstat (limited to 'lib/VNDB/Handler/VNBrowse.pm')
-rw-r--r--lib/VNDB/Handler/VNBrowse.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/VNDB/Handler/VNBrowse.pm b/lib/VNDB/Handler/VNBrowse.pm
index c867b550..8af5791e 100644
--- a/lib/VNDB/Handler/VNBrowse.pm
+++ b/lib/VNDB/Handler/VNBrowse.pm
@@ -132,7 +132,7 @@ sub _filters {
div id => 'advoptions', class => 'hidden';
h2;
- lit 'Categories <p>(boolean and, selecting more gives less results. The categories are explained on <a href="/d1">this page</a>)</p>';
+ lit 'Categories <b>(boolean and, selecting more gives less results. The categories are explained on <a href="/d1">this page</a>)</b>';
end;
ul id => 'catselect';
for my $c (qw| e g t p h l s |) {
@@ -147,7 +147,7 @@ sub _filters {
end;
h2;
- lit 'Languages <p>(boolean or, selecting more gives more results)</p>';
+ lit 'Languages <b>(boolean or, selecting more gives more results)</b>';
end;
for(sort @{$self->dbLanguages}) {
span;
@@ -160,7 +160,7 @@ sub _filters {
}
h2;
- lit 'Platforms <p>(boolean or, selecting more gives more results)</p>';
+ lit 'Platforms <b>(boolean or, selecting more gives more results)</b>';
end;
for(sort keys %{$self->{platforms}}) {
next if $_ eq 'oth';