Contacts: Updates for PHP 8.1

This commit is contained in:
fusionate
2023-06-04 00:51:12 +00:00
parent f5f3ef680e
commit a4a56d06e3
5 changed files with 78 additions and 26 deletions
+2 -2
View File
@@ -62,8 +62,8 @@
//get http post variables and set them to php variables
if (!empty($_POST)) {
$contact_note = $_POST["contact_note"];
$last_mod_date = $_POST["last_mod_date"];
$last_mod_user = $_POST["last_mod_user"] ?? '';
$last_mod_date = $_POST["last_mod_date"] ?? null;
$last_mod_user = $_POST["last_mod_user"] ?? null;
}
//process the form data