fixed some small formatting and logic mistakes

master
Tim Bazuin 5 years ago
parent e7eb852c66
commit bad2f8fa18

@ -46,7 +46,7 @@ $(function () {
function setFileSelectVisibility() {
var selectedOption = $('#certificate option:selected');
if (selectedOption.data('hasPrivateKey') == '1') {
if (selectedOption.data('hasPrivateKey') != '1') {
keyLocationContainer.show();
return;
}

@ -76,6 +76,7 @@ class Action extends Session
$parameters = [
'server' => $server,
'ca' => file_get_contents($this->getCore()->getBaseDir() . '/storage/ca/ca.crt'),
'cert' => $cert->getCertificate(),
'key' => '',
];

@ -22,13 +22,10 @@ cipher AES-256-CBC
comp-lzo
<ca>
{{ ca }}
</ca>
{{ ca }}</ca>
<cert>
{{ cert }}
</cert>
{{ cert }}</cert>
<key>
{{ key }}
</key>
{{ key }}</key>
Loading…
Cancel
Save