Skip to content

Commit e392fd0

Browse files
author
Till Brehm
committed
Merge branch 'stable-3.1' into 'stable-3.1'
Fix: dont use strict comparison to install server plugin See merge request ispconfig/ispconfig3!891
2 parents c33bba3 + 470bb76 commit e392fd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/plugins-available/z_php_fpm_incron_reload_plugin.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class z_php_fpm_incron_reload_plugin {
1717
function onInstall() {
1818
global $conf;
1919

20-
return $conf['services']['web'] === true;
20+
return $conf['services']['web'] == true;
2121
}
2222

2323
function onLoad() {

0 commit comments

Comments
 (0)