diff --git a/wp-includes/class.wp-dependencies.php b/wp-includes/class.wp-dependencies.php index a1a0363876..03484181cf 100644 --- a/wp-includes/class.wp-dependencies.php +++ b/wp-includes/class.wp-dependencies.php @@ -211,6 +211,7 @@ class WP_Dependencies { * as a query string for cache busting purposes. If version is set to false, a version * number is automatically added equal to current installed WordPress version. * If set to null, no version is added. + * @param mixed $args Optional. Custom property of the item. NOT the class property $args. Examples: $media, $in_footer. * @return bool Whether the item has been registered. True on success, false on failure. */ public function add( $handle, $src, $deps = array(), $ver = false, $args = null ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index b7df8b561e..791f4db1e3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta3-36993'; +$wp_version = '4.5-beta3-36994'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.