Changeset 4938 for trunk/wp-includes/class-pop3.php
- Timestamp:
- 02/25/07 13:33:03 (2 years ago)
- Files:
-
- trunk/wp-includes/class-pop3.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/class-pop3.php
r2066 r4938 394 394 $MsgArray = array(); 395 395 396 $line = fgets($fp,$buffer);396 $line = ""; 397 397 while ( !ereg("^\.\r\n",$line)) 398 398 { 399 $line = fgets($fp,$buffer); 400 if (preg_match("/^\s+/", $line) && $count > 0) { 401 $MsgArray[$count-1] .= $line; 402 continue; 403 } 404 if(empty($line)) { break; } 405 399 406 $MsgArray[$count] = $line; 400 407 $count++; 401 $line = fgets($fp,$buffer);402 if(empty($line)) { break; }403 408 } 404 409 return $MsgArray;
