mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 07:18:39 +08:00
UTF8-Subjects not working (close #1479)
This commit is contained in:
parent
8ce5e86b04
commit
4a19059217
1 changed files with 2 additions and 1 deletions
|
@ -668,7 +668,8 @@ END;
|
|||
|
||||
$aEncodeArray = array('');
|
||||
$aMatch = array();
|
||||
\preg_match_all('/=\?[^\?]+\?[q|b|Q|B]\?[^\?]*(\?=)/', $sValue, $aMatch);
|
||||
// \preg_match_all('/=\?[^\?]+\?[q|b|Q|B]\?[^\?]*?\?=/', $sValue, $aMatch);
|
||||
\preg_match_all('/=\?[^\?]+\?[q|b|Q|B]\?.*?\?=/', $sValue, $aMatch);
|
||||
|
||||
if (isset($aMatch[0]) && \is_array($aMatch[0]))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue