summaryrefslogtreecommitdiff
path: root/program/steps/mail
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-04-20 13:58:21 +0000
committeralecpl <alec@alec.pl>2011-04-20 13:58:21 +0000
commit4351f7cd661391aa46c17c1107b6bddf31f25c5b (patch)
treeed579465c850d8cd01fae04da50bfdbe7a0cb16a /program/steps/mail
parent6cc3f5887d7af3ad3b505a6f0fa62752314be1fe (diff)
- Improve performance by including files with absolute path (#1487849)
Diffstat (limited to 'program/steps/mail')
-rw-r--r--program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 33e29a799..0f81b9bc1 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -682,7 +682,7 @@ function rcmail_print_body($part, $p = array())
// text/enriched
else if ($data['type'] == 'enriched') {
$part->ctype_secondary = 'html';
- require_once('lib/enriched.inc');
+ require_once(INSTALL_PATH . 'program/lib/enriched.inc');
$body = Q(enriched_to_html($data['body']), 'show');
}
else {