Changeset 32990 for trunk/tools/i18n/add-textdomain.php
- Timestamp:
- 06/28/2015 03:26:41 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/tools/i18n/add-textdomain.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/i18n/add-textdomain.php
r25003 r32990 15 15 var $funcs; 16 16 17 function AddTextdomain() { 17 /** 18 * PHP5 constructor. 19 */ 20 function __construct() { 18 21 $makepot = new MakePOT; 19 22 $this->funcs = array_keys( $makepot->rules ); 23 } 24 25 /** 26 * PHP4 constructor. 27 */ 28 public function AddTextdomain() { 29 _deprecated_constructor( 'AddTextdomain' , '4.3' ); 20 30 } 21 31
Note: See TracChangeset
for help on using the changeset viewer.