Notify.php
authorAlan Knowles <alan@roojs.com>
Mon, 23 Sep 2013 04:18:42 +0000 (12:18 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 23 Sep 2013 04:18:42 +0000 (12:18 +0800)
Notify.php

index 418fc2a..95a6031 100644 (file)
@@ -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..)