Skip to content

Commit

Permalink
Fix dmarc undefined array key #84
Browse files Browse the repository at this point in the history
  • Loading branch information
bwalkerl authored and brendanheywood committed Nov 30, 2024
1 parent e65b35a commit 95349a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/dns_util.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public function get_dmarc_dns_record() {
$parts = explode('.', $domain);
$domain = join('.', array_slice($parts, 1));
}
return ['', ''];
return ['', '', ''];
}

/**
Expand Down

0 comments on commit 95349a7

Please sign in to comment.