Development

Changeset 6862

You must first sign up to be able to contribute.

Changeset 6862

Show
Ignore:
Timestamp:
12/31/07 21:59:06 (8 months ago)
Author:
dwhittle
Message:

lime: removed open_basedir support for greater compatability

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/lime/trunk/lib/lime.php

    r5580 r6862  
    491491 
    492492      ob_start(array($this, 'process_test_output')); 
    493       passthru(sprintf('%s -d html_errors=off -d open_basedir= -q "%s" 2>&1', $this->php_cli, $file), $return); 
     493      passthru(sprintf('%s "%s" 2>&1', $this->php_cli, $file), $return); 
    494494      ob_end_clean(); 
    495495 
     
    653653      file_put_contents($tmp_file, $tmp); 
    654654      ob_start(); 
    655       passthru(sprintf('%s -d html_errors=off -d open_basedir= -q "%s" 2>&1', $this->harness->php_cli, $tmp_file), $return); 
     655      passthru(sprintf('%s "%s" 2>&1', $this->harness->php_cli, $tmp_file), $return); 
    656656      $retval = ob_get_clean(); 
    657657      if (0 == $return)