Merge pull request #3197 from rubenverhoef/CSV-ING

Fix small issue from #3146
This commit is contained in:
James Cole 2020-03-18 19:57:42 +00:00 committed by GitHub
commit 7c3b5fe714
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,7 +140,11 @@ class IngDescription implements SpecificInterface
*/
protected function removeNameIngDescription(): void
{
$this->row[8] = preg_replace('/Naam:.*?([a-zA-Z\/]+:)/', '$1', $this->row[8]);
$matches = array();
if (preg_match('/Valutadatum: ([0-9-]+)/', $this->row[8], $matches)) {
$this->row[9] = date("Ymd", strtotime($matches[1]));
$this->row[8] = preg_replace('/Valutadatum: [0-9-]+/', '', $this->row[8]);
}
}
/**