Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nemiah committed Oct 24, 2024
1 parent 250443f commit 24165ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nemiah/phpSepaXml/SEPAParty.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function __construct($data = null) {
}

function fixNm($name){
return mb_substr(str_replace(array("ä", "ö", "ü", "Ä", "Ö", "Ü", "ß", "&", "³", "-", "|", "é"), array("ae", "oe", "ue", "Ae", "Oe", "Ue", "ss", "und", "3", " ", "", "e"), $name), 0, 70);
return mb_substr(str_replace(array("ä", "ö", "ü", "Ä", "Ö", "Ü", "ß", "&", "³", "-", "|", "é", "[", "]"), array("ae", "oe", "ue", "Ae", "Oe", "Ue", "ss", "und", "3", " ", "", "e", "", ""), $name), 0, 70);
}

public static function fixNmS($name){
Expand Down

0 comments on commit 24165ab

Please sign in to comment.