Revision f2a86ca9
Added by Jim Pingle over 14 years ago
usr/local/www/vpn_openvpn_client.php | ||
---|---|---|
615 | 615 |
if ($pconfig['caref'] == $ca['refid']) |
616 | 616 |
$selected = "selected"; |
617 | 617 |
?> |
618 |
<option value="<?=$ca['refid'];?>" <?=$selected;?>><?=$ca['name'];?></option>
|
|
618 |
<option value="<?=$ca['refid'];?>" <?=$selected;?>><?=$ca['descr'];?></option>
|
|
619 | 619 |
<?php endforeach; ?> |
620 | 620 |
</select> |
621 | 621 |
</td> |
... | ... | |
630 | 630 |
if ($pconfig['certref'] == $cert['refid']) |
631 | 631 |
$selected = "selected"; |
632 | 632 |
?> |
633 |
<option value="<?=$cert['refid'];?>" <?=$selected;?>><?=$cert['name'];?></option>
|
|
633 |
<option value="<?=$cert['refid'];?>" <?=$selected;?>><?=$cert['descr'];?></option>
|
|
634 | 634 |
<?php endforeach; ?> |
635 | 635 |
</select> |
636 | 636 |
</td> |
Also available in: Unified diff
Rename 'name' to 'descr' for CA, Certificates, and CRLs, to gain CDATA protection and standardize field names. Ticket #320.