summaryrefslogtreecommitdiff
path: root/roundcubemail
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-29 10:50:53 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-29 10:50:53 +0000
commit66cb279cd12c826a3acafa368dbbdd56fdd3029e (patch)
treea591554b81ba008524dcdf784f8f5033578c7e10 /roundcubemail
parent679ea2dbf072a0d40fa2a4e762cec2e39b28c57f (diff)
- Fix address parsing for situation when encoded words are used inside quoted string (#1484961)
git-svn-id: https://svn.roundcube.net/trunk@4159 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
-rw-r--r--roundcubemail/program/include/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php
index ae53741eb..3fd9e1a31 100644
--- a/roundcubemail/program/include/rcube_imap.php
+++ b/roundcubemail/program/include/rcube_imap.php
@@ -4495,7 +4495,7 @@ class rcube_imap
$name = substr($name, 1, -1);
$name = stripslashes($name);
}
- else if ($decode) {
+ if ($decode) {
$name = $this->decode_header($name);
}
}