From 0d45e03f194ce8ab2ac5b702506234b1d98ecc70 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Mon, 7 Mar 2022 16:37:40 +0100 Subject: [PATCH] fix missing $ for a variable in Lighttpd-class Signed-off-by: Michael Kaufmann --- lib/Froxlor/Cron/Http/Lighttpd.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Froxlor/Cron/Http/Lighttpd.php b/lib/Froxlor/Cron/Http/Lighttpd.php index d6a08d6e..50d160e8 100644 --- a/lib/Froxlor/Cron/Http/Lighttpd.php +++ b/lib/Froxlor/Cron/Http/Lighttpd.php @@ -251,7 +251,7 @@ class Lighttpd extends HttpConfigBase // check for existence, #1485 if (! file_exists($domain['ssl_ca_file'])) { $this->logger->logAction(\Froxlor\FroxlorLogger::CRON_ACTION, LOG_ERR, $ip . ':' . $port . ' :: certificate CA file "' . $domain['ssl_ca_file'] . '" does not exist! Cannot create ssl-directives'); - echo $ip . ':' . port . ' :: certificate CA file "' . $domain['ssl_ca_file'] . '" does not exist! SSL-directives might not be working' . "\n"; + echo $ip . ':' . $port . ' :: certificate CA file "' . $domain['ssl_ca_file'] . '" does not exist! SSL-directives might not be working' . "\n"; } else { $this->lighttpd_data[$vhost_filename] .= 'ssl.ca-file = "' . \Froxlor\FileDir::makeCorrectFile($domain['ssl_ca_file']) . '"' . "\n"; }