From: Chuck Hagenbuch Date: Wed, 18 Feb 2009 16:14:08 +0000 (-0500) Subject: fix path (duck@obala.net, #8008) X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=bd65d27269d9a91468b1e608d455e75e7dad08e8;p=horde.git fix path (duck@obala.net, #8008) --- diff --git a/framework/Mime/lib/Horde/Mime/Viewer/rtf.php b/framework/Mime/lib/Horde/Mime/Viewer/rtf.php index 775032226..2da5d1feb 100644 --- a/framework/Mime/lib/Horde/Mime/Viewer/rtf.php +++ b/framework/Mime/lib/Horde/Mime/Viewer/rtf.php @@ -45,7 +45,7 @@ class Horde_Mime_Viewer_rtf extends Horde_Mime_Viewer_Driver file_put_contents($tmp_rtf, $this->_mimepart->getContents()); - exec($GLOBALS['mime_drivers']['horde']['rtf']['location'] . " $tmp_rtf > $tmp_output"); + exec($this->_conf['location'] . " $tmp_rtf > $tmp_output"); if (file_exists($tmp_output)) { $data = file_get_contents($tmp_output);