Skip to content

Commit

Permalink
Item13897: Fixed undef ext name
Browse files Browse the repository at this point in the history
  • Loading branch information
vrurg committed Oct 24, 2016
1 parent 476ee63 commit cddb9d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/Foswiki/Aux/Dependencies.pm
Expand Up @@ -750,7 +750,7 @@ sub installDependencies {
my $version = $depEntry->{version};
$version ||= 0;
my $extName = $profile->{_dep2Ext}{ $depEntry->{source} };
my $extOptional = !$profile->{mandatoryExt}{$extName};
my $extOptional = !( $extName && $profile->{mandatoryExt}{$extName} );
my $optional = ( $depEntry->{fromExt} && $extOptional )
|| $depEntry->{description} !~ /^required/i;

Expand Down

0 comments on commit cddb9d7

Please sign in to comment.