You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
But when you pass this value to Zend\Mime\Decoder::splitHeaderField(); it returns a wrong value because of a logical bug in the code (Line #181, the condition is not correct for all cases):
According to https://tools.ietf.org/html/rfc5322, the following email address example is completely ok:
"Some Name" <[email protected]>
But when you pass this value to Zend\Mime\Decoder::splitHeaderField(); it returns a wrong value because of a logical bug in the code (Line #181, the condition is not correct for all cases):
Expected results
"Some Name" <[email protected]>
Actual results
"Some Name" <[email protected]
So, in the actual result, the last character is missing.
I would like to create a merge request with valid tests if you think this should be fixed.
The text was updated successfully, but these errors were encountered: