- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class.wp-dependencies.php
r16469 r17771 25 25 var $groups = array(); 26 26 var $group = 0; 27 28 function WP_Dependencies() {29 $args = func_get_args();30 call_user_func_array( array(&$this, '__construct'), $args );31 }32 33 function __construct() {}34 27 35 28 /** … … 229 222 var $extra = array(); 230 223 231 function _ WP_Dependency() {224 function __construct() { 232 225 @list($this->handle, $this->src, $this->deps, $this->ver, $this->args) = func_get_args(); 233 226 if ( !is_array($this->deps) )
Note: See TracChangeset
for help on using the changeset viewer.