Avoid PHP 4 parse error prior to version checks. Props dd32. see #17880

git-svn-id: https://develop.svn.wordpress.org/trunk@18339 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2011-06-24 21:32:40 +00:00
parent 4bf3adc029
commit 8be45e1409
1 changed files with 2 additions and 1 deletions

View File

@ -561,7 +561,8 @@ function shutdown_action_hook() {
*/
function wp_clone( $object ) {
return clone $object;
// Use parens for clone to accommodate PHP 4. See #17880
return clone( $object );
}
/**