From: Hypolite Petovan Date: Thu, 6 Feb 2020 03:22:08 +0000 (-0500) Subject: Fix undefined variable in contact import n mod/settings X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7f402da40fd0eb3b8077ee79ed4aa3991cd5d918;p=friendica.git Fix undefined variable in contact import n mod/settings --- diff --git a/mod/settings.php b/mod/settings.php index b9bdf66ec0..30d406d59a 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -406,9 +406,10 @@ function settings_post(App $a) Worker::add(PRIORITY_LOW, 'AddContact', $_SESSION['uid'], $csvRow[0]); } } + info(DI::l10n()->t('Importing Contacts done')); // delete temp file - unlink($filename); + unlink($_FILES['importcontact-filename']['tmp_name']); } } }