From 798e878386e4e467895aeace1a197463aa368524 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 23 Sep 2013 12:18:42 +0800 Subject: [PATCH] Notify.php --- Notify.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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..) -- 2.39.2