Merge pull request #7844 from filo87/v5-develop
fix: SwissQr postal code appears twice
This commit is contained in:
commit
ccb0b265fe
1 changed files with 2 additions and 2 deletions
|
|
@ -90,7 +90,7 @@ class SwissQrGenerator
|
|||
$this->client->address1 ? substr($this->client->address1, 0 , 70) : '',
|
||||
$this->client->address2 ? substr($this->client->address2, 0 , 16) : '',
|
||||
$this->client->postal_code ? substr($this->client->postal_code, 0, 16) : '',
|
||||
$this->client->city ? substr($this->client->postal_code, 0, 35) : '',
|
||||
$this->client->city ? substr($this->client->city, 0, 35) : '',
|
||||
'CH'
|
||||
));
|
||||
|
||||
|
|
@ -173,4 +173,4 @@ class SwissQrGenerator
|
|||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue