summaryrefslogtreecommitdiff
path: root/lib/VNDB/Handler
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-03-22 08:00:46 +0100
committerYorhel <git@yorhel.nl>2020-03-22 08:00:48 +0100
commit86f5ce595ccef433ef33bba58005789311612b91 (patch)
tree2a9ac176b09a3ee57c4b975f52f1e98a6f5bd7a7 /lib/VNDB/Handler
parentc96057a713925b031877c954f47387627834d3d4 (diff)
Handler::Producers: Explicitly mention primary language on producer pages
To avoid confusion - https://vndb.org/t950.693 .. 696.
Diffstat (limited to 'lib/VNDB/Handler')
-rw-r--r--lib/VNDB/Handler/Producers.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/VNDB/Handler/Producers.pm b/lib/VNDB/Handler/Producers.pm
index 7a1a287c..b75081f0 100644
--- a/lib/VNDB/Handler/Producers.pm
+++ b/lib/VNDB/Handler/Producers.pm
@@ -90,7 +90,9 @@ sub page {
h1 $p->{name};
h2 class => 'alttitle', lang => $p->{lang}, $p->{original} if $p->{original};
p class => 'center';
- txt "$LANGUAGE{$p->{lang}} $PRODUCER_TYPE{$p->{type}}";
+ txt $PRODUCER_TYPE{$p->{type}};
+ br;
+ txt "Primary language: $LANGUAGE{$p->{lang}}";
if($p->{alias}) {
(my $alias = $p->{alias}) =~ s/\n/, /g;
br;