X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/48ab98cb1779cf2088c1351ac3dd3d0da6fb31d3..46588ee871246a923d972538dbc93b26f4fda932:/wp-includes/class.wp-dependencies.php diff --git a/wp-includes/class.wp-dependencies.php b/wp-includes/class.wp-dependencies.php index c1bac65b..7995a908 100644 --- a/wp-includes/class.wp-dependencies.php +++ b/wp-includes/class.wp-dependencies.php @@ -89,7 +89,7 @@ class WP_Dependencies { * @return array Handles of items that have been processed. */ public function do_items( $handles = false, $group = false ) { - /** + /* * If nothing is passed, print the queue. If a string is passed, * print that item. If an array is passed, print those items. */ @@ -99,7 +99,7 @@ class WP_Dependencies { foreach( $this->to_do as $key => $handle ) { if ( !in_array($handle, $this->done, true) && isset($this->registered[$handle]) ) { - /** + /* * A single item may alias a set of items, by having dependencies, * but no source. Queuing the item queues the dependencies. * @@ -107,13 +107,13 @@ class WP_Dependencies { * add( 'scriptaculous', false, array( 'scriptaculous-dragdrop', 'scriptaculous-slider', 'scriptaculous-controls' ) ); * * The src property is false. - **/ + */ if ( ! $this->registered[$handle]->src ) { $this->done[] = $handle; continue; } - /** + /* * Attempt to process the item. If successful, * add the handle to the done array. *