Missing ";" on unset statement.
This commit is contained in:
frytimo 2020-06-17 12:14:23 -04:00 committed by GitHub
parent 0ce0f597f6
commit 10d95bb117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
?>
?>