Skip to content

Commit

Permalink
nutze filter_ssh_key für den SSH-Key
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernd Wurst committed Jun 3, 2024
1 parent fdf6cce commit a839d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dns/include/dnsinclude.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function edit_dyndns_account($id, $handle, $password_http, $sshkey)
$id = (int) $id;
$oldaccount = get_dyndns_account($id);
$handle = verify_input_identifier($handle);
$sshkey = verify_input_ascii($sshkey);
$sshkey = filter_ssh_key($sshkey);
if (trim($sshkey) == '') {
$sshkey = null;
}
Expand Down

0 comments on commit a839d8f

Please sign in to comment.