summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-04-21 16:19:30 +0200
committerYorhel <git@yorhel.nl>2021-04-21 16:19:30 +0200
commit497e81ea0c6e203d7f67141e4764afe910c81713 (patch)
tree973d2cfc237237d4270fe7ca7c89a6b6a177a21c /lib
parentbfeeb6c42d9cc1919604ccbc5a0413387ac678d5 (diff)
Reports: Fix object link for sub-items
Diffstat (limited to 'lib')
-rw-r--r--lib/VNWeb/Misc/Reports.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNWeb/Misc/Reports.pm b/lib/VNWeb/Misc/Reports.pm
index a1dd2c82..09d458b6 100644
--- a/lib/VNWeb/Misc/Reports.pm
+++ b/lib/VNWeb/Misc/Reports.pm
@@ -23,7 +23,7 @@ sub obj {
sub obj_ {
my($o) = @_;
- my $lnk = $o->{object} . ($o->{objectnum} ? "#$o->{objectnum}" : '');
+ my $lnk = $o->{object} . ($o->{objectnum} ? ".$o->{objectnum}" : '');
if($o->{object} =~ /^(?:$RE{wid}|$RE{tid})$/ && $o->{objectnum}) {
txt_ 'Comment ';
a_ href => "/$lnk", "#$o->{objectnum}";