? .imageapi_imagemagick.module.swp ? imageapi_imagemagick.module.patch Index: imageapi_imagemagick.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/imageapi/imageapi_imagemagick.module,v retrieving revision 1.17.2.3 diff -u -p -r1.17.2.3 imageapi_imagemagick.module --- imageapi_imagemagick.module 18 Mar 2009 07:59:56 -0000 1.17.2.3 +++ imageapi_imagemagick.module 17 Apr 2009 17:45:14 -0000 @@ -191,7 +191,7 @@ function _imageapi_imagemagick_convert_e 1 => array('pipe', 'w'), // stdout 2 => array('pipe', 'w') // stderr ); - if ($h = proc_open($convert_path .' '. $command_args, $descriptors, $pipes)) { + if ($h = proc_open($convert_path .' '. $command_args, $descriptors, $pipes, $_SERVER['DOCUMENT_ROOT'])) { $output = ''; while (!feof($pipes[1])) { $output .= fgets($pipes[1]);