| | |
| | | /** |
| | | * Roundcube Webmail deprecated functions |
| | | * |
| | | * @package Core |
| | | * @package Webmail |
| | | * @subpackage Legacy |
| | | * @author Thomas Bruederli <roundcube@gmail.com> |
| | | */ |
| | |
| | | |
| | | function rcmail_temp_gc() |
| | | { |
| | | rcmail::get_instance()->temp_gc(); |
| | | rcmail::get_instance()->gc_temp(); |
| | | } |
| | | |
| | | function rcube_charset_convert($str, $from, $to=NULL) |
| | |
| | | return rcube_enriched::to_html($data); |
| | | } |
| | | |
| | | function strip_quotes($str) |
| | | { |
| | | return str_replace(array("'", '"'), '', $str); |
| | | } |
| | | |
| | | function strip_newlines($str) |
| | | { |
| | | return preg_replace('/[\r\n]/', '', $str); |
| | | } |
| | | |
| | | class rcube_html_page extends rcmail_html_page |
| | | { |
| | | } |