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:
627503c
)
Backticks in Kundennamen machen SEPA Export Datei kaputt
author
G. Richardson
<information@kivitendo-premium.de>
Tue, 4 Feb 2014 15:49:42 +0000
(16:49 +0100)
committer
G. Richardson
<information@kivitendo-premium.de>
Tue, 4 Feb 2014 15:49:42 +0000
(16:49 +0100)
Diese werden jetzt durch normale Apostrophen ersetzt. Wahrscheinlich
waren die eh gemeint, vielleicht sollte man die lieber ganz in
Kundennamen verbieten.
SL/SEPA/XML.pm
patch
|
blob
|
history
diff --git
a/SL/SEPA/XML.pm
b/SL/SEPA/XML.pm
index
8ccfa83
..
3aa88b7
100644
(file)
--- a/
SL/SEPA/XML.pm
+++ b/
SL/SEPA/XML.pm
@@
-67,6
+67,7
@@
sub _replace_special_chars {
'Ü' => 'Ue',
'ß' => 'ss',
'&' => '+',
+ '`' => '\'',
);
map { $text =~ s/$_/$special_chars{$_}/g; } keys %special_chars;