yakamara / yform

YForm für REDAXO 5 – Formulare im Frontend und Backend mit Verwaltung von Datenbank-Tabellen.
MIT License
77 stars 55 forks source link

Import: normalize line endings #1457

Open thielpeter opened 1 year ago

thielpeter commented 1 year ago

https://github.com/yakamara/yform/blob/691342e6b6bff0df151d89cdddd64b686fe95c11/plugins/manager/pages/data_import.php#L82

Manche Importe klappen nicht aufgrund der line endings. Eine Normalisierung wäre wünschenswert:

$file_contents = @file_get_contents($filename);
$file_contents  = preg_replace("/\r\n|\n\r|\n|\r/", "\n", $file_contents);
file_put_contents($filename, $file_contents);