diff -r 2f6f6f7551ca -r 32102edaa81b web/wp-includes/functions.wp-scripts.php
--- a/web/wp-includes/functions.wp-scripts.php Thu Sep 16 15:45:36 2010 +0000
+++ b/web/wp-includes/functions.wp-scripts.php Mon Nov 19 18:26:13 2012 +0100
@@ -24,9 +24,13 @@
$handles = false;
global $wp_scripts;
- if ( !is_a($wp_scripts, 'WP_Scripts') ) {
+ if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
+ if ( ! did_action( 'init' ) )
+ _doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
+ 'wp_enqueue_scripts
', 'admin_enqueue_scripts
', 'init
' ), '3.3' );
+
if ( !$handles )
- return array(); // No need to instantiate if nothing's there.
+ return array(); // No need to instantiate if nothing is there.
else
$wp_scripts = new WP_Scripts();
}
@@ -35,15 +39,24 @@
}
/**
- * Register new JavaScript file.
+ * Register new Javascript file.
*
* @since r16
- * @see WP_Dependencies::add() For parameter information.
+ * @param string $handle Script name
+ * @param string $src Script url
+ * @param array $deps (optional) Array of script names on which this script depends
+ * @param string|bool $ver (optional) Script version (used for cache busting), set to null to disable
+ * @param bool $in_footer (optional) Whether to enqueue the script before or before