Changeset 30537 for trunk/src/wp-includes/class.wp-dependencies.php
- Timestamp:
- 11/24/2014 04:57:17 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class.wp-dependencies.php
r29253 r30537 90 90 */ 91 91 public function do_items( $handles = false, $group = false ) { 92 /* *92 /* 93 93 * If nothing is passed, print the queue. If a string is passed, 94 94 * print that item. If an array is passed, print those items. … … 100 100 if ( !in_array($handle, $this->done, true) && isset($this->registered[$handle]) ) { 101 101 102 /* *102 /* 103 103 * A single item may alias a set of items, by having dependencies, 104 104 * but no source. Queuing the item queues the dependencies. … … 108 108 * 109 109 * The src property is false. 110 **/110 */ 111 111 if ( ! $this->registered[$handle]->src ) { 112 112 $this->done[] = $handle; … … 114 114 } 115 115 116 /* *116 /* 117 117 * Attempt to process the item. If successful, 118 118 * add the handle to the done array.
Note: See TracChangeset
for help on using the changeset viewer.