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:
f95864a
)
DATEV: Dateinamen richtig in EV-Datei schreiben
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 2 Nov 2015 13:58:41 +0000
(14:58 +0100)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 2 Nov 2015 14:00:46 +0000
(15:00 +0100)
Ein foreach über ein Array weist der Iteratorvariablen die Inhalte zu,
nicht die Indizes ins Array. Also die Variable nicht noch mal ans Index
nutzen.
Fun fact: das war mindestens seit dem perltidy-Commit in 2005 kaputt.
SL/DATEV.pm
patch
|
blob
|
history
diff --git
a/SL/DATEV.pm
b/SL/DATEV.pm
index
c1c56c5
..
88c5fb4
100644
(file)
--- a/
SL/DATEV.pm
+++ b/
SL/DATEV.pm
@@
-958,7
+958,7
@@
sub kne_buchungsexport {
print(EV $ev_header);
foreach my $file (@ed_versionset) {
- print(EV $
ed_versionset[$file]
);
+ print(EV $
file
);
}
close(EV);
###