summaryrefslogtreecommitdiff
path: root/lib/VNDB/Handler/Tags.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-05-10 14:48:34 +0200
committerYorhel <git@yorhel.nl>2009-05-10 14:48:34 +0200
commitd3e270d6987cfe696ee2c2e25bb344f242f53a1e (patch)
tree11343e05596afea0ba795c913d68d247eaa336ee /lib/VNDB/Handler/Tags.pm
parent31c7f61c58686e39645a45fa2feeb435ac023e7f (diff)
Added search field on release browser
Diffstat (limited to 'lib/VNDB/Handler/Tags.pm')
-rw-r--r--lib/VNDB/Handler/Tags.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/VNDB/Handler/Tags.pm b/lib/VNDB/Handler/Tags.pm
index d10de195..6838e7c7 100644
--- a/lib/VNDB/Handler/Tags.pm
+++ b/lib/VNDB/Handler/Tags.pm
@@ -367,8 +367,8 @@ sub taglist {
$self->htmlHeader(title => $title);
div class => 'mainbox';
h1 $title;
- form class => 'search', action => '/g/list', 'accept-charset' => 'UTF-8', method => 'get';
- fieldset;
+ form action => '/g/list', 'accept-charset' => 'UTF-8', method => 'get';
+ fieldset class => 'search';
input type => 'hidden', name => 't', value => $f->{t};
input type => 'text', name => 'q', id => 'q', class => 'text', value => $f->{q};
input type => 'submit', class => 'submit', value => 'Search!';
@@ -589,8 +589,8 @@ sub tagindex {
div class => 'mainbox';
a class => 'addnew', href => "/g/new", ($self->authCan('tagmod')?'Create':'Request').' new tag' if $self->authCan('tag');
h1 'Search tags';
- form class => 'search', action => '/g/list', 'accept-charset' => 'UTF-8', method => 'get';
- fieldset;
+ form action => '/g/list', 'accept-charset' => 'UTF-8', method => 'get';
+ fieldset class => 'search';
input type => 'text', name => 'q', id => 'q', class => 'text';
input type => 'submit', class => 'submit', value => 'Search!';
end;