mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Carry over the key length on input errors when creating a certificate signing request. Ticket #2233
This commit is contained in:
parent
310a7a05d8
commit
c04237e9d5
@ -701,6 +701,8 @@ function internalca_change() {
|
||||
<td width="78%" class="vtable">
|
||||
<select name='csr_keylen' class="formselect">
|
||||
<?php
|
||||
if (!isset($pconfig['keylen']) && isset($pconfig['csr_keylen']))
|
||||
$pconfig['keylen'] = $pconfig['csr_keylen'];
|
||||
foreach( $cert_keylens as $len):
|
||||
$selected = "";
|
||||
if ($pconfig['keylen'] == $len)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user