Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion server/src/perl/Inquisitor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ package Inquisitor;
use strict;
use attributes;
no warnings;
use File::Spec;

my @preloaded; # Check what's loaded before we pollute the namespace

Expand Down Expand Up @@ -356,7 +357,7 @@ sub dump_loaded_mods {
foreach my $key_to_print (@$filtered_modules) {
my $path = $displays->{$key_to_print};
next if !$path; # If we don't have a path, the modHunter module would be better
print_tag("$key_to_print", "m", "", $path, $key_to_print, 0, "");
print_tag("$key_to_print", "m", "", File::Spec->rel2abs($path), $key_to_print, 0, "");
}
return;
}
Expand Down