diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-27 12:13:33 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-27 12:13:33 +0100 |
commit | 60226a75d8e4a3ee9504da6eab6d8f329bb32e7b (patch) | |
tree | 4194c1f4b32fea06964029e9ce06bb18ccb05da6 /program/steps | |
parent | 10da75f3645ff2121bbaf9d603f2e1465eddab78 (diff) |
Separate the very application-specific output classes from the Roundcube framework; add autoloader for rmail* classes
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 33ac1a206..ff442ad60 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -790,7 +790,7 @@ function rcmail_plain_body($body, $flowed=false) global $RCMAIL; // make links and email-addresses clickable - $replacer = new rcube_string_replacer; + $replacer = new rcmail_string_replacer; // search for patterns like links and e-mail addresses and replace with tokens $body = $replacer->replace($body); |