Ticket #4337: 4337.diff
File 4337.diff, 618 bytes (added by , 18 years ago) |
---|
-
wp-includes/class-pop3.php
367 367 while ( !ereg("^\.\r\n",$line)) 368 368 { 369 369 $line = fgets($fp,$buffer); 370 if (preg_match("/^\s+/", $line) && $count > 0) { 370 if ( '.' == $line{0} && !ereg("^\.\r\n",$line) ) $line = substr($line,1); } 371 if (preg_match("/^\s+\S+/", $line) && $count > 0) { 371 372 $MsgArray[$count-1] .= $line; 372 373 continue; 373 374 }