From 10d95bb11789773bd004930602688620551c512f Mon Sep 17 00:00:00 2001 From: frytimo Date: Wed, 17 Jun 2020 12:14:23 -0400 Subject: [PATCH] Fix typo (#5303) Missing ";" on unset statement. --- app/contacts/contact_import_google.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/contacts/contact_import_google.php b/app/contacts/contact_import_google.php index ec9703a643..51372e9a3e 100644 --- a/app/contacts/contact_import_google.php +++ b/app/contacts/contact_import_google.php @@ -114,7 +114,7 @@ if ($_POST['a'] == 'import') { //delete duplicate contact $obj = new contacts; $obj->delete($array); - unset($array) + unset($array); //revoke temporary permissions $p->delete('contact_delete', 'temp'); @@ -604,4 +604,4 @@ function curl_file_get_contents($url) { curl_close($curl); return $contents; } -?> \ No newline at end of file +?>