diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-02-27 12:04:22 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-02-27 12:04:22 +0000 |
| commit | 7ca0047433b94380df5f933d09ac7e68afc05bd3 (patch) | |
| tree | 3ae0824892755ac7dca123c92a295ea96aaefc8c /roundcubemail/program/include/rcube_message.php | |
| parent | f066da50adc17c86f58901b1a0d7783259525b08 (diff) | |
Map renamed methods for backwards compatibility
git-svn-id: https://svn.roundcube.net/trunk@5917 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_message.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_message.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/roundcubemail/program/include/rcube_message.php b/roundcubemail/program/include/rcube_message.php index ee1e92de1..76246a2d8 100644 --- a/roundcubemail/program/include/rcube_message.php +++ b/roundcubemail/program/include/rcube_message.php @@ -682,4 +682,20 @@ class rcube_message return $parts; } + + + /** + * Deprecated methods (to be removed) + */ + + public static function unfold_flowed($text) + { + return rcube_mime::unfold_flowed($text); + } + + public static function format_flowed($text, $length = 72) + { + return rcube_mime::format_flowed($text, $length); + } + } |
