Skip to content

Commit

Permalink
Item14237: Fixed incorrect module name composition
Browse files Browse the repository at this point in the history
  • Loading branch information
vrurg committed May 10, 2018
1 parent 86f0b55 commit 31944a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/Foswiki/Object.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ sub _normalizeAttributeName {
my $pkg = ( caller( $level++ ) )[0];
$package = $pkg unless $pkg =~ /^Foswiki::Object/;
}
$attributeName = "$package::$attributeName";
$attributeName = "${package}::$attributeName";
}
return $attributeName;
}
Expand Down

0 comments on commit 31944a7

Please sign in to comment.