0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

see #808 - db_log expects 3 strings ... make sure we do not pass in a null

This commit is contained in:
David Goodwin 2024-03-08 11:46:14 +00:00
parent 20136f257f
commit c422a4bad2

View File

@ -87,7 +87,7 @@ class DkimHandler extends PFAHandler
db_delete($this->db_table, $this->id_field, $this->id);
db_log($this->result['domain_name'], 'delete_dkim_entry', $this->result['label']);
db_log($this->result['domain_name'], 'delete_dkim_entry', $this->result['description'] ?? '');
$this->infomsg[] = Config::Lang_f('pDelete_delete_success', $this->result['label']);
return true;
}