Changeset 21132 for trunk/wp-includes/class.wp-scripts.php
- Timestamp:
- 06/26/2012 05:33:19 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class.wp-scripts.php
r20000 r21132 32 32 33 33 function __construct() { 34 if ( ! function_exists( 'did_action' ) || did_action( 'init' ) ) 35 $this->init(); 36 else 37 add_action( 'init', array( $this, 'init' ), 0 ); 34 $this->init(); 35 add_action( 'init', array( $this, 'init' ), 0 ); 38 36 } 39 37
Note: See TracChangeset
for help on using the changeset viewer.