|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-03-20 20:49 UTC] chagenbu at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 07:00:01 2025 UTC |
In php-3.0.15/functions/imap.c, line 1557 which is: if ( myargc < 3 || myargc > 4 || getParameters(...) ) { WRONG_PARAM_COUNT; } should be: if ( myargc != 2 || getParameters(...) ) { WRONG_PARAM_COUNT; } Similarly for line 1586. This should correct the errors when deleting a mail item. Thank you.