X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/8a06f4f9392d1ac373442f82ee40428a3cb81395..refs/tags/wordpress-3.1-scripts:/wp-includes/class-pop3.php diff --git a/wp-includes/class-pop3.php b/wp-includes/class-pop3.php index bdb7903f..2bf442f8 100644 --- a/wp-includes/class-pop3.php +++ b/wp-includes/class-pop3.php @@ -11,17 +11,13 @@ * An RFC 1939 compliant wrapper class for the POP3 protocol. * * Licensed under the GNU GPL. For full terms see the file COPYING. + * @license http://opensource.org/licenses/gpl-license.php GNU General Public License * * pop3 class * - * $Id: class-pop3.php 8082 2008-06-14 16:36:13Z westi $ + * $Id: class-pop3.php 17435 2011-02-09 17:35:36Z ryan $ */ -/** - * POP3 - * - * @package SquirrelMail - */ class POP3 { var $ERROR = ''; // Error string. @@ -372,7 +368,7 @@ class POP3 { $line = fgets($fp,$buffer); while ( !ereg("^\.\r\n",$line)) { - if ( $line{0} == '.' ) { $line = substr($line,1); } + if ( $line[0] == '.' ) { $line = substr($line,1); } $MsgArray[$count] = $line; $count++; $line = fgets($fp,$buffer);