Changeset 52339
- Timestamp:
- 12/07/2021 05:47:28 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class.wp-dependencies.php
r52338 r52339 356 356 $this->args[ $handle[0] ] = $handle[1]; 357 357 } 358 } else 358 } elseif ( ! isset( $this->registered[ $handle[0] ] ) ) { 359 359 $this->queued_before_register[ $handle[0] ] = null; // $args 360 360 … … 388 388 unset( $this->queue[ $key ] ); 389 389 unset( $this->args[ $handle[0] ] ); 390 } else 390 } elseif ( array_key_exists( $handle[0], $this->queued_before_register ) ) { 391 391 unset( $this->queued_before_register[ $handle[0] ] ); 392 392 }
Note: See TracChangeset
for help on using the changeset viewer.