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:
3fdf284
)
Array-Kopie anstatt Alias
author
Jan Büren
<jan@kivitendo-premium.de>
Mon, 25 Sep 2017 15:01:11 +0000
(17:01 +0200)
committer
Jan Büren
<jan@kivitendo-premium.de>
Mon, 25 Sep 2017 15:01:11 +0000
(17:01 +0200)
Verhindert präventiv den Nebeneffekt, falls jmd. direkt das
Objekt nach Übergabe noch manipuliert.
SL/DATEV.pm
patch
|
blob
|
history
diff --git
a/SL/DATEV.pm
b/SL/DATEV.pm
index
0d6915f
..
9418c48
100644
(file)
--- a/
SL/DATEV.pm
+++ b/
SL/DATEV.pm
@@
-219,7
+219,7
@@
sub warnings {
my $self = shift;
if (@_) {
- $self->{warnings} =
\@_
;
+ $self->{warnings} =
[@_]
;
} else {
return $self->{warnings};
}