diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-05 12:05:53 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-05 12:05:53 +0000 |
| commit | bbb6597e02f1ac8b5865b5bab38c471f752be38b (patch) | |
| tree | 3d5f0d72903bc0c527bf0f4f61501379eafeed30 | |
| parent | 57e60c45efe8d3caad0bab75f3207118443fe372 (diff) | |
- Fix subject decoding for Create filter dialog
git-svn-id: https://svn.roundcube.net/trunk@5169 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | plugins/managesieve/managesieve.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/managesieve/managesieve.php b/plugins/managesieve/managesieve.php index 41a60cf66..4614f0568 100644 --- a/plugins/managesieve/managesieve.php +++ b/plugins/managesieve/managesieve.php @@ -118,7 +118,7 @@ class managesieve extends rcube_plugin $ret = array(); if ($headers->subject) - $ret[] = array('Subject', $headers->subject); + $ret[] = array('Subject', $this->rc->imap->decode_header($headers->subject)); // @TODO: List-Id, others? foreach (array('From', 'To') as $h) { |
