ZF-7978: method Zend_Mail_Protocol_Imap::_decodeLine() incorrectly parse some tokens
Description
Try to parse (using Zend_Mail_Protocol_Imap::_decodeLine() ) the following line "* STATUS blurdybloop (MESSAGES 231 UNSEEN 0)", in the result you'll miss last "0" token. It's because of incorrect parsing of tokens in the following code fragment (file Zend/Mail/Protocol/Imap.php)
// only add if token had more than just closing braces
if ($token) {
$tokens[] = $token;
}
In input line above last token is "0" but expression "if ($token) {" treat it as numeric 0 and hence as a FALSE value. So instead of adding string "0" code ignores it.
Comments
Posted by Satoru Yoshida (satoruyoshida) on 2009-10-08T05:34:49.000+0000
Sergei, I think following code, do you think? If "(some strings 0 )" would be passed, it seems to work fine.
Posted by Sergei Stolyarov (cancel) on 2009-10-08T09:41:41.000+0000
Yes, it looks fine for me.
Posted by Satoru Yoshida (satoruyoshida) on 2009-10-08T15:24:52.000+0000
Thanks, solved at SVN r18498 in trunk