Changeset 46632 for trunk/src/wp-includes/pomo/streams.php
- Timestamp:
- 11/02/2019 08:47:44 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pomo/streams.php
r46631 r46632 150 150 */ 151 151 function __construct( $filename ) { 152 parent:: POMO_Reader();152 parent::__construct(); 153 153 $this->_f = fopen( $filename, 'rb' ); 154 154 } … … 233 233 */ 234 234 function __construct( $str = '' ) { 235 parent:: POMO_Reader();235 parent::__construct(); 236 236 $this->_str = $str; 237 237 $this->_pos = 0; … … 301 301 */ 302 302 function __construct( $filename ) { 303 parent:: POMO_StringReader();303 parent::__construct(); 304 304 $this->_str = file_get_contents( $filename ); 305 305 if ( false === $this->_str ) { … … 332 332 */ 333 333 public function __construct( $filename ) { 334 parent:: POMO_CachedFileReader( $filename );334 parent::__construct( $filename ); 335 335 } 336 336
Note: See TracChangeset
for help on using the changeset viewer.