Revert [15637]. Still needed for PHP4.

git-svn-id: https://develop.svn.wordpress.org/trunk@15639 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-09-20 19:17:47 +00:00
parent 5963feeca6
commit 1b0446409c
1 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,13 @@ class WP_Dependencies {
var $groups = array();
var $group = 0;
function WP_Dependencies() {
$args = func_get_args();
call_user_func_array( array(&$this, '__construct'), $args );
}
function __construct() {}
/**
* Do the dependencies
*