fixed some small formatting and logic mistakes

This commit is contained in:
Tim Bazuin 2019-08-03 15:29:39 +02:00
parent e7eb852c66
commit bad2f8fa18
3 changed files with 5 additions and 7 deletions

View file

@ -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;
}

View file

@ -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' => '',
];

View file

@ -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>