Skip to content

Commit e3139e2

Browse files
committed
fixed issue with missing bracket
1 parent c0e7328 commit e3139e2

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)