Topic: Import Transactions 2.3.22-4 2.3.22-4
When testing this feature I get the message
67 Payments would have been successful if imported. Uncheck Trial check before importing.
Around line 238 of /modules/import_transactions/import_transactions.php change
// Commit import to database
if ((isset($_POST['trial'])) && ($_POST['trial']==null)){
$trial = null;
}
if (isset($_POST['trial']) && ($_POST['trial']!=null)) {
$trial = !null;
}
To
// Commit import to database
if ((isset($_POST['trial'])) && ($_POST['trial']==null)){
$trial = null;
}
if (isset($_POST['trial']) && ($_POST['trial']!=null)) {
$trial = !null;
}
if (!isset($_POST['trial']) ) {
$trial = null;
}
seems to do the trick.
HTH
G