Changeset 17681
- Timestamp:
- 04/22/2011 05:46:02 PM (14 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r17637 r17681 2603 2603 } 2604 2604 2605 2606 /**2607 * Copy an object.2608 *2609 * Returns a cloned copy of an object.2610 *2611 * @since 2.7.02612 * @deprecated 3.22613 *2614 * @param object $object The object to clone2615 * @return object The cloned object2616 */2617 function wp_clone( $object ) {2618 _deprecated_function( __FUNCTION__, '3.2' );2619 2620 return clone $object;2621 }2622 2623 2605 /** 2624 2606 * Check for PHP timezone support -
trunk/wp-includes/load.php
r17632 r17681 552 552 553 553 /** 554 * Copy an object. 555 * 556 * @since 2.7.0 557 * @deprecated 3.2 558 * 559 * @param object $object The object to clone 560 * @return object The cloned object 561 */ 562 563 function wp_clone( $object ) { 564 _deprecated_function( __FUNCTION__, '3.2' ); 565 566 return clone $object; 567 } 568 569 /** 554 570 * Whether the current request is for a network or blog admin page 555 571 *
Note: See TracChangeset
for help on using the changeset viewer.