Changeset 32990 for trunk/src/wp-includes/class-pop3.php
- Timestamp:
- 06/28/2015 03:26:41 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-pop3.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-pop3.php
r17677 r32990 45 45 // manually 46 46 47 function POP3 ( $server = '', $timeout = '' ) { 47 /** 48 * PHP5 constructor. 49 */ 50 function __construct ( $server = '', $timeout = '' ) { 48 51 settype($this->BUFFER,"integer"); 49 52 if( !empty($server) ) { … … 62 65 return true; 63 66 } 67 68 /** 69 * PHP4 constructor. 70 */ 71 public function POP3( $server = '', $timeout = '' ) { 72 self::__construct( $server, $timeout ); 73 } 64 74 65 75 function update_timer () {
Note: See TracChangeset
for help on using the changeset viewer.