Automated merge from 22.0 to 23.0 by tool pullmerge.sh

This commit is contained in:
Laurent Destailleur
2026-03-15 12:08:38 +01:00

View File

@@ -1204,7 +1204,12 @@ class AccountancyExport
$tab['end_line'] = $end_line;
print implode('|', $tab);
$output = implode('|', $tab);
if ($exportFile) {
fwrite($exportFile, $output);
} else {
print $output;
}
$index++;
}