Make WordPress Core


Ignore:
Timestamp:
11/13/2010 09:53:55 AM (16 years ago)
Author:
nacin
Message:

Use square brackets instead of braces for string access. props hakre, fixes #13900.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-pop3.php

    r9503 r16340  
    368368        while ( !ereg("^\.\r\n",$line))
    369369        {
    370             if ( $line{0} == '.' ) { $line = substr($line,1); }
     370            if ( $line[0] == '.' ) { $line = substr($line,1); }
    371371            $MsgArray[$count] = $line;
    372372            $count++;
Note: See TracChangeset for help on using the changeset viewer.