diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-11-27 08:43:43 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-11-27 08:43:43 +0100 |
commit | a92beb6bdb9cb857e8cee6606033691f11692230 (patch) | |
tree | 4733c82a5989817bb7d61b0ad9bd12cb62a2b881 /program/lib/Roundcube/rcube_output_html.php | |
parent | 581fe08a050bea2dbdcad30b9a0ea02f5623a3ac (diff) |
Define RCUBE_CHARSET in place of RCMAIL_CHARSET for naming consistency
Diffstat (limited to 'program/lib/Roundcube/rcube_output_html.php')
-rw-r--r-- | program/lib/Roundcube/rcube_output_html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube_output_html.php b/program/lib/Roundcube/rcube_output_html.php index 0d51eaf06..6c9dfdd1f 100644 --- a/program/lib/Roundcube/rcube_output_html.php +++ b/program/lib/Roundcube/rcube_output_html.php @@ -1364,8 +1364,8 @@ class rcube_output_html extends rcube_output // trigger hook with final HTML content to be sent $hook = $this->app->plugins->exec_hook("send_page", array('content' => $output)); if (!$hook['abort']) { - if ($this->charset != RCMAIL_CHARSET) { - echo rcube_charset::convert($hook['content'], RCMAIL_CHARSET, $this->charset); + if ($this->charset != RCUBE_CHARSET) { + echo rcube_charset::convert($hook['content'], RCUBE_CHARSET, $this->charset); } else { echo $hook['content']; |