summaryrefslogtreecommitdiffstats
path: root/etc/inc/system.inc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/inc/system.inc')
-rw-r--r--etc/inc/system.inc10
1 files changed, 3 insertions, 7 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc
index 0add04c..eb5de40 100644
--- a/etc/inc/system.inc
+++ b/etc/inc/system.inc
@@ -889,14 +889,10 @@ function system_webgui_start() {
if ($config['system']['webgui']['protocol'] == "https") {
// Ensure that we have a webConfigurator CERT
$cert =& lookup_cert($config['system']['webgui']['ssl-certref']);
- if(!is_array($cert) || !$cert['crt'] || !$cert['prv']) {
+ if(!is_array($cert) || !$cert['crt'] || !$cert['prv'])
$cert = system_webgui_create_certificate();
- $crt = base64_decode($cert['crt']);
- $key = base64_decode($cert['prv']);
- } else {
- $crt = base64_decode($cert['crt']);
- $key = base64_decode($cert['prv']);
- }
+ $crt = base64_decode($cert['crt']);
+ $key = base64_decode($cert['prv']);
if(!$config['system']['webgui']['port'])
$portarg = "443";
OpenPOWER on IntegriCloud