summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-10-21 14:09:48 +0200
committerYorhel <git@yorhel.nl>2009-10-21 14:09:48 +0200
commit0325073d1eb045628f6090c7be4ee9685d7ec159 (patch)
treefd817ddd8017fa9da3593bf97273bfce7ff67811
parent91b6578e17f1ce6d0ff7974d06ae55ad2e39bf1d (diff)
Handler::Tags: Increased tag dropdown search results to 15
-rw-r--r--ChangeLog1
-rw-r--r--lib/VNDB/Handler/Tags.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 444f710c..71ff2069 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -30,6 +30,7 @@ git - ?
- Set 'no spoilers' as default spoiler level for tags
- Added Czech and Hungarian interface translation
- Producer relations
+ - Increased tag dropdown search results to 15
2.7 - 2009-09-24
- Improved styling of the threeboxes layout
diff --git a/lib/VNDB/Handler/Tags.pm b/lib/VNDB/Handler/Tags.pm
index f75efdc6..4c969436 100644
--- a/lib/VNDB/Handler/Tags.pm
+++ b/lib/VNDB/Handler/Tags.pm
@@ -653,7 +653,7 @@ sub tagxml {
my($list, $np) = $self->dbTagGet(
$q =~ /^g([1-9]\d*)/ ? (id => $1) : $q =~ /^name:(.+)$/ ? (name => $1) : (search => $q),
- results => 10,
+ results => 15,
page => 1,
);