mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 10:09:20 +03: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('');
|
$aEncodeArray = array('');
|
||||||
$aMatch = 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]))
|
if (isset($aMatch[0]) && \is_array($aMatch[0]))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue