Fix contact import with Frio

This commit is contained in:
Michael 2020-11-10 06:37:27 +00:00
parent b1bc8ebbfa
commit 52c88ae414
2 changed files with 6 additions and 2 deletions

View File

@ -229,6 +229,7 @@ function settings_post(App $a)
notice(DI::l10n()->t('Contact CSV file upload error'));
} else {
$csvArray = array_map('str_getcsv', file($_FILES['importcontact-filename']['tmp_name']));
Logger::info('Import started', ['lines' => count($csvArray)]);
// import contacts
foreach ($csvArray as $csvRow) {
// The 1st row may, or may not contain the headers of the table
@ -240,11 +241,14 @@ function settings_post(App $a)
Worker::add(PRIORITY_LOW, 'AddContact', $_SESSION['uid'], $csvRow[0]);
}
}
Logger::info('Import done');
info(DI::l10n()->t('Importing Contacts done'));
// delete temp file
unlink($_FILES['importcontact-filename']['tmp_name']);
}
} else {
Logger::info('Import triggered, but no import file was found.');
}
return;

View File

@ -234,7 +234,7 @@
<input type="file" name="importcontact-filename" />
</div>
<div class="panel-footer">
<button type="submit" name="submit" class="btn btn-primary" value="{{$submit}}">{{$submit}}</button>
<button type="submit" name="importcontact-submit" class="btn btn-primary" value="{{$submit}}">{{$submit}}</button>
</div>
</div>
</div>
@ -253,7 +253,7 @@
<div id="settings-relocate-desc">{{$relocate_text}}</div>
</div>
<div class="panel-footer">
<button type="submit" name="submit" class="btn btn-primary" value="{{$submit}}">{{$submit}}</button>
<button type="submit" name="resend_relocate" class="btn btn-primary" value="{{$submit}}">{{$submit}}</button>
</div>
</div>
</div>