projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
74bb69c
)
Tests: Fix für String-Evaluation-Änderung in Perl 5.26
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 17 Oct 2017 11:16:46 +0000
(13:16 +0200)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 17 Oct 2017 11:18:16 +0000
(13:18 +0200)
Vorher wurde "$a::$b" als "${a}::${b}" gewertet. Nun wird das aber als
"${a::}${b}" gewertet.
SL/Helper/Object.pm
patch
|
blob
|
history
diff --git
a/SL/Helper/Object.pm
b/SL/Helper/Object.pm
index
bf673b2
..
9126802
100644
(file)
--- a/
SL/Helper/Object.pm
+++ b/
SL/Helper/Object.pm
@@
-76,7
+76,7
@@
sub delegate {
die "invalid args handling '$params->{args}'" unless defined $target_code;
eval "
- sub $
caller
::$method {
+ sub $
{caller}
::$method {
$pre_context $target_code$method_joiner$target_method$args_string; $post_context
}
1;