summaryrefslogtreecommitdiff
path: root/lib/VNWeb/Misc
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2022-02-11 15:36:01 +0100
committerYorhel <git@yorhel.nl>2022-02-11 15:36:01 +0100
commit2c24795314ff1d7780d22e4319d47544f2df4f70 (patch)
tree8d73ea72c5be9ec837b5d4243547ad023ad9356d /lib/VNWeb/Misc
parent0ac54169b8e91479e641b8f6058ce9b0a7d5ae3a (diff)
Fix displaying of VN alttitle on reviews
Diffstat (limited to 'lib/VNWeb/Misc')
-rw-r--r--lib/VNWeb/Misc/HomePage.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VNWeb/Misc/HomePage.pm b/lib/VNWeb/Misc/HomePage.pm
index 6dcac4a0..72645768 100644
--- a/lib/VNWeb/Misc/HomePage.pm
+++ b/lib/VNWeb/Misc/HomePage.pm
@@ -205,7 +205,7 @@ sub releases_ {
sub reviews_ {
my $lst = tuwf->dbAlli('
- SELECT w.id, v.title, w.isfull, ', sql_user(), ',', sql_totime('w.date'), 'AS date
+ SELECT w.id, v.title, v.alttitle, w.isfull, ', sql_user(), ',', sql_totime('w.date'), 'AS date
FROM reviews w
JOIN vnt v ON v.id = w.vid
LEFT JOIN users u ON u.id = w.uid
@@ -220,7 +220,7 @@ sub reviews_ {
span_ sub {
txt_ fmtage($_->{date}).' ';
b_ class => 'grayedout', $_->{isfull} ? ' Full ' : ' Mini ';
- a_ href => "/$_->{id}", title => $_->{title}, $_->{title};
+ a_ href => "/$_->{id}", title => $_->{alttitle}||$_->{title}, $_->{title};
};
span_ sub {
lit_ 'by ';