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:
nacin 2012-02-08 15:29:24 +00:00
parent afcce70613
commit e82da3b730
1 changed files with 7 additions and 0 deletions

View File

@ -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) );
}