Revert [15637]. Still needed for PHP4.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15639 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-09-20 19:17:47 +00:00
parent 9e97f25249
commit 2d360ad164
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
*