Changeset 36604 for trunk/src/wp-includes/class.wp-dependencies.php
- Timestamp:
- 02/20/2016 10:10:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class.wp-dependencies.php
r36550 r36604 385 385 $group = (int) $group; 386 386 387 if ( $recursion ) 388 $group = min($this->group, $group); 389 else 390 $this->group = $group; 387 if ( $recursion ) { 388 $group = min( $this->group, $group ); 389 } 390 391 $this->group = $group; 391 392 392 393 if ( isset($this->groups[$handle]) && $this->groups[$handle] <= $group )
Note: See TracChangeset
for help on using the changeset viewer.