summaryrefslogtreecommitdiff
path: root/lib/VNDB
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2018-01-05 09:44:11 +0100
committerYorhel <git@yorhel.nl>2018-01-05 09:44:11 +0100
commite244e401ac54ee9b276ffcaf00558f2216a432d4 (patch)
treee9044c7bf9a68118cf73389933b3c4515cb726ff /lib/VNDB
parentdc52e2d87a4ba69ab4da15c33371f9fd59db412b (diff)
Fix static file URL for release icons
Diffstat (limited to 'lib/VNDB')
-rw-r--r--lib/VNDB/Handler/VNPage.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/Handler/VNPage.pm b/lib/VNDB/Handler/VNPage.pm
index d590c743..2ebb42e6 100644
--- a/lib/VNDB/Handler/VNPage.pm
+++ b/lib/VNDB/Handler/VNPage.pm
@@ -838,7 +838,7 @@ sub _releases {
sub _release_icon {
my($class, $title, $img) = @_;
abbr class => 'release_icons_container', title => $title;
- img src=> "/f/$img.svg", class => "release_icons $class", alt => $title;
+ img src=> "$TUWF::OBJ->{url_static}/f/$img.svg", class => "release_icons $class", alt => $title;
end;
}