Skip to content

Commit 470bb76

Browse files
author
Webslice
committed
Fix: dont use strict comparison to install server plugin
1 parent c33bba3 commit 470bb76

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)