mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Fix PHP warning when destination email is not in post data (#7618)
This commit is contained in:
@@ -130,7 +130,7 @@
|
||||
$destination_type_text = $_POST["destination_type_text"] ?? null;
|
||||
$destination_type_emergency = $_POST["destination_type_emergency"] ?? null;
|
||||
$destination_carrier = $_POST["destination_carrier"] ?? null;
|
||||
$destination_email = $_POST["destination_email"];
|
||||
$destination_email = $_POST["destination_email"] ?? null;
|
||||
|
||||
//sanitize the destination conditions
|
||||
if (!empty($destination_conditions)) {
|
||||
|
||||
Reference in New Issue
Block a user