Skip to content

Commit 6879323

Browse files
author
Till Brehm
committed
Merge branch 'master' into 'master'
fixed issue with missing bracket I just realised that in my last patch a bracket was missing. Sorry for that - here's the fix for it. See merge request !512
2 parents e287921 + e3139e2 commit 6879323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/mods-available/web_module.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ function restartHttpd($action = 'restart') {
203203
$daemon = $web_config['server_type'];
204204
break;
205205
default:
206-
if(is_file($conf['init_scripts'] . '/' . 'httpd24-httpd') || is_dir('/opt/rh/httpd24/root/etc/httpd') {
206+
if(is_file($conf['init_scripts'] . '/' . 'httpd24-httpd') || is_dir('/opt/rh/httpd24/root/etc/httpd')) {
207207
$daemon = 'httpd24-httpd';
208208
} elseif(is_file($conf['init_scripts'] . '/' . 'httpd') || is_dir('/etc/httpd')) {
209209
$daemon = 'httpd';

0 commit comments

Comments
 (0)