diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-09-22 21:35:49 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-09-22 21:35:49 -0700 |
commit | 790bf4e871b1a1555dc32287ab222b6694d402a2 (patch) | |
tree | d1b455bdc14e05fc512351ec17bc47b1449333f6 /modules/gallery/helpers/gallery.php | |
parent | 3b8475908feded1a982cf9a7e43e0dd18755c470 (diff) |
Prioritize using the value in graphics_toolkit_path over the standard
path so that if you change that value in Admin > Settings > Advanced
we prefer it over other paths (which may be restricted by
open_basedir). Fixes #1395.
Diffstat (limited to 'modules/gallery/helpers/gallery.php')
-rw-r--r-- | modules/gallery/helpers/gallery.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/gallery/helpers/gallery.php b/modules/gallery/helpers/gallery.php index ca8c92c9..3cf0eacd 100644 --- a/modules/gallery/helpers/gallery.php +++ b/modules/gallery/helpers/gallery.php @@ -140,4 +140,17 @@ class gallery_Core { return $file_name; } + /** + * Set the PATH environment variable to the paths specified. + * @param array Array of paths. Each array entry can contain a colon separated list of paths. + */ + static function set_path_env($paths) { + $path_env = array(); + foreach ($paths as $path) { + if ($path) { + array_push($path_env, $path); + } + } + putenv("PATH=" . implode(":", $path_env)); + } }
\ No newline at end of file |