We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if(sizeof($msglist)>0){ $i = 0; for ($j = 1; $j <= sizeof($msglist); $j++) {
if ($msglist["$j"] == $last_uidl) { $i = $j+1;/*********************************/ break; } } if ($Count < $i) { POP35::disconnect($c); } if ($Count == 0) { //echo "Login OK: Inbox EMPTY<br />"; POP35::disconnect($c); } else { $newmsgcount = $Count - $i + 1; //echo "Login OK: Inbox contains [" . $newmsgcount . "] messages<br />"; } for (; $i < $Count; $i++) { if($k<=$max_messages_downloaded_x_session){ $cur_msg_index=$i+1; $l = POP35::pList($c, $cur_msg_index); $last_uidl = $msglist["$cur_msg_index"];
The text was updated successfully, but these errors were encountered:
$i = $j+1 ← This is a bug
Sorry, something went wrong.
I fix it on my Pull Request with some other stuff: #26
No branches or pull requests
if(sizeof($msglist)>0){
$i = 0;
for ($j = 1; $j <= sizeof($msglist); $j++) {
The text was updated successfully, but these errors were encountered: