diff options
-rw-r--r-- | etc/inc/util.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/util.inc b/etc/inc/util.inc index 6286572..fb495f4 100644 --- a/etc/inc/util.inc +++ b/etc/inc/util.inc @@ -1089,7 +1089,7 @@ function mwexec_bg($command, $clearsigmask = false) { $oldset = array(); pcntl_sigprocmask(SIG_SETMASK, array(), $oldset); } - $_gb = exec("nohup $command > /dev/null 2>&1 &"); + $_gb = exec("/usr/bin/nohup $command > /dev/null 2>&1 &"); if ($clearsigmask) { pcntl_sigprocmask(SIG_SETMASK, $oldset); } |