Changeset 54944
- Timestamp:
- 12/06/2022 09:31:33 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r54855 r54944 1133 1133 * @deprecated 3.2.0 1134 1134 * 1135 * @param object $ object The object to clone.1135 * @param object $input_object The object to clone. 1136 1136 * @return object The cloned object. 1137 1137 */ 1138 function wp_clone( $ object ) {1138 function wp_clone( $input_object ) { 1139 1139 // Use parens for clone to accommodate PHP 4. See #17880. 1140 return clone( $ object );1140 return clone( $input_object ); 1141 1141 } 1142 1142
Note: See TracChangeset
for help on using the changeset viewer.