Merge pull request #1499 from UweBeckert/patch-1

remove spaces in pid_file
This commit is contained in:
Rom Walton 2016-02-28 22:57:46 -05:00
commit 22c00f9beb
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ function get_daemon_status() {
}
$x = new StdClass;
$x->cmd = (string)$d->cmd;
$x->status = local_daemon_running($x->cmd, $d->pid_file, $web_host);
$x->status = local_daemon_running($x->cmd, trim($d->pid_file), $web_host);
$x->host = $web_host;
$local_daemons[] = $x;