From: Alan Knowles Date: Mon, 23 Sep 2013 04:18:42 +0000 (+0800) Subject: Notify.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=798e878386e4e467895aeace1a197463aa368524 Notify.php --- diff --git a/Notify.php b/Notify.php index 418fc2ae..95a60312 100644 --- a/Notify.php +++ b/Notify.php @@ -286,7 +286,13 @@ class Pman_Core_Notify extends Pman 1 => array("file", $tn, 'w'), // stdout is a pipe that the child will write to 2 => array("pipe", "w") // stderr is a file to write to ); - $php = $_ENV["_"]; + + static $php = false; + if (!$php) { + require_once 'System.php'; + $php = System::which('php'); + } + $sn = $_SERVER["SCRIPT_NAME"]; $cwd = $sn[0] == '/' ? dirname($sn) : dirname(realpath(getcwd() . '/'. $sn)); // same as run on.. (so script should end up being same relatively..)