diff --git a/wp-includes/class.wp-scripts.php b/wp-includes/class.wp-scripts.php index 2cca26c691..52c6824b5a 100644 --- a/wp-includes/class.wp-scripts.php +++ b/wp-includes/class.wp-scripts.php @@ -247,7 +247,7 @@ class WP_Scripts extends WP_Dependencies { * @return bool Not already in the group or a lower group */ public function set_group( $handle, $recursion, $group = false ) { - if ( $this->registered[$handle]->args === 1 ) + if ( isset( $this->registered[$handle]->args ) && $this->registered[$handle]->args === 1 ) $grp = 1; else $grp = (int) $this->get_data( $handle, 'group' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 02574047a7..a224a9fad7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34861'; +$wp_version = '4.4-alpha-34862'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.