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:
529750e
)
ReportGenerator: set_options: "for" statt "map", da Rückgabewert nicht verwendet
author
Bernd Bleßmann
<bernd@kivitendo-premium.de>
Fri, 4 Oct 2019 16:47:10 +0000
(18:47 +0200)
committer
Bernd Bleßmann
<bernd@kivitendo-premium.de>
Fri, 4 Oct 2019 17:09:41 +0000
(19:09 +0200)
SL/ReportGenerator.pm
patch
|
blob
|
history
diff --git
a/SL/ReportGenerator.pm
b/SL/ReportGenerator.pm
index
3b03f5a
..
f530179
100644
(file)
--- a/
SL/ReportGenerator.pm
+++ b/
SL/ReportGenerator.pm
@@
-165,7
+165,7
@@
sub set_options {
while (my ($key, $value) = each %options) {
if ($key eq 'pdf_export') {
-
map { $self->{options}->{pdf_export}->{$_} = $value->{$_} }
keys %{ $value };
+
$self->{options}->{pdf_export}->{$_} = $value->{$_} for
keys %{ $value };
} else {
$self->{options}->{$key} = $value;
}