Changeset 32990 for trunk/src/wp-includes/pomo/entry.php
- Timestamp:
- 06/28/2015 03:26:41 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pomo/entry.php
r32672 r32990 41 41 * - flags (array) -- flags like php-format 42 42 */ 43 function Translation_Entry($args=array()) {43 function __construct( $args = array() ) { 44 44 // if no singular -- empty object 45 45 if (!isset($args['singular'])) { … … 54 54 if (!is_array($this->references)) $this->references = array(); 55 55 if (!is_array($this->flags)) $this->flags = array(); 56 } 57 58 /** 59 * PHP4 constructor. 60 */ 61 public function Translation_Entry( $args = array() ) { 62 self::__construct( $args ); 56 63 } 57 64
Note: See TracChangeset
for help on using the changeset viewer.