Skip to content

Commit

Permalink
see #808 - db_log expects 3 strings ... make sure we do not pass in a…
Browse files Browse the repository at this point in the history
… null
  • Loading branch information
DavidGoodwin committed Mar 8, 2024
1 parent 20136f2 commit c422a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/DkimHandler.php
Expand Up @@ -87,7 +87,7 @@ public function delete()

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;
}
Expand Down

0 comments on commit c422a4b

Please sign in to comment.