Wait until init to fire wp_default_scripts. Fixes localization issues when a plugin calls wp_enqueue_script() too early (in spite of the _doing_it_wrong warning signs added in #11526). fixes #19959.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19865 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
afcce70613
commit
e82da3b730
|
@ -31,6 +31,13 @@ class WP_Scripts extends WP_Dependencies {
|
|||
var $default_dirs;
|
||||
|
||||
function __construct() {
|
||||
if ( did_action( 'init' ) )
|
||||
$this->init();
|
||||
else
|
||||
add_action( 'init', array( $this, 'init' ), 0 );
|
||||
}
|
||||
|
||||
function init() {
|
||||
do_action_ref_array( 'wp_default_scripts', array(&$this) );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue