mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 16:14:40 +00:00
system: fix crash report in previous
This commit is contained in:
parent
deda19dc61
commit
c687c9bb36
@ -378,7 +378,7 @@ include("head.inc");
|
||||
<?php
|
||||
$ciphers = json_decode(configd_run("system ssl ciphers"), true);
|
||||
foreach ($ciphers as $cipher => $cipher_data):?>
|
||||
<option value="<?=$cipher;?>" <?=in_array($cipher, $pconfig['ssl-ciphers']) ? 'selected="selected"' : '';?>>
|
||||
<option value="<?=$cipher;?>" <?= !empty($pconfig['ssl-ciphers']) && in_array($cipher, $pconfig['ssl-ciphers']) ? 'selected="selected"' : '' ?>>
|
||||
<?=!empty($cipher_data['description']) ? $cipher_data['description'] : $cipher;?>
|
||||
</option>
|
||||
<?php
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user