Skip to content

Commit

Permalink
Issue #4066: Made version output depending on if a version is given.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter committed Jan 17, 2025
1 parent 2f9039e commit b0ddd8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kernel/System/Package.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3905,7 +3905,7 @@ sub _CheckModuleRequired {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Sorry, can't install package, because module "
. "$Module->{Content} v$Module->{Version} is required "
. "$Module->{Content}" . ( defined $Module->{Version} ? " v$Module->{Version}" : '' ) . " is required "
. "and not installed!",
);
return;
Expand Down

0 comments on commit b0ddd8a

Please sign in to comment.