We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43cc5a0 commit 10ad99eCopy full SHA for 10ad99e
proxy.php
@@ -141,7 +141,7 @@ function checkCoolwsdSetup()
141
return 'appimage_not_executable';
142
143
$disabledFunctions = explode(',', ini_get('disable_functions'));
144
- if (!in_array('exec', $disabledFunctions) || @exec('echo EXEC') !== "EXEC")
+ if (in_array('exec', $disabledFunctions) || @exec('echo EXEC') !== "EXEC")
145
return 'exec_disabled';
146
147
exec("LD_TRACE_LOADED_OBJECTS=1 $appImage", $output, $return);
0 commit comments