From bd65d27269d9a91468b1e608d455e75e7dad08e8 Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Wed, 18 Feb 2009 11:14:08 -0500 Subject: [PATCH] fix path (duck@obala.net, #8008) --- framework/Mime/lib/Horde/Mime/Viewer/rtf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.0