Skip to content
Snippets Groups Projects
Commit 6fc833c0 authored by tbrehm's avatar tbrehm
Browse files

Fixed syntax error in install/lib/installer_base.lib.php

parent 2ebadd76
No related branches found
No related tags found
No related merge requests found
......@@ -1426,7 +1426,7 @@ class installer_base {
$content = str_replace('{vhost_port_listen}', '', $content);
}
if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir'/interface/ssl/ispserver.key')) {
if(is_file($install_dir.'/interface/ssl/ispserver.crt') && is_file($install_dir.'/interface/ssl/ispserver.key')) {
$content = str_replace('{ssl_comment}', '', $content);
} else {
$content = str_replace('{ssl_comment}', '#', $content);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment