N°6474 - Fix regression introduced by 70e6f707

This commit is contained in:
Molkobain
2023-06-27 18:16:55 +02:00
parent 2cca57c7fa
commit 5a33fb7a6a

View File

@@ -137,12 +137,13 @@ else {
exit - 1;
}
$bSimulate = (utils::ReadParam('simulate', '0', true) == '1');
$sDataSourcesList = ReadMandatoryParam($oP, 'data_sources', 'raw_data'); // May contain commas
}
if ($sDataSourcesList == null) {
UsageAndExit($oP);
}
$bSimulate = (utils::ReadParam('simulate', '0', true) == '1');
$sDataSourcesList = ReadMandatoryParam($oP, 'data_sources', 'raw_data'); // May contain commas
if ($sDataSourcesList == null) {
UsageAndExit($oP);
}
foreach(explode(',', $sDataSourcesList) as $iSDS)