summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail/func.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-04-20 13:58:21 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-04-20 13:58:21 +0000
commit32d682d2f1998dbbcb67ea98a04aecd4d1247945 (patch)
tree9c4a19192dc9e3a34c7dff3aede8a11feafc6717 /roundcubemail/program/steps/mail/func.inc
parentf511cf2acaa930100b121d70831fc6bd8d8cd699 (diff)
- Improve performance by including files with absolute path (#1487849)
git-svn-id: https://svn.roundcube.net/trunk@4678 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/func.inc')
-rw-r--r--roundcubemail/program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index 33e29a799..0f81b9bc1 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/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 {