Changes in trunk/wp-includes/class-pop3.php [17435:9503]
- File:
-
- 1 edited
-
trunk/wp-includes/class-pop3.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-pop3.php
r17435 r9503 12 12 * 13 13 * Licensed under the GNU GPL. For full terms see the file COPYING. 14 * @license http://opensource.org/licenses/gpl-license.php GNU General Public License15 14 * 16 15 * pop3 class … … 369 368 while ( !ereg("^\.\r\n",$line)) 370 369 { 371 if ( $line [0]== '.' ) { $line = substr($line,1); }370 if ( $line{0} == '.' ) { $line = substr($line,1); } 372 371 $MsgArray[$count] = $line; 373 372 $count++;
Note: See TracChangeset
for help on using the changeset viewer.