Index: wp-includes/cache.php
===================================================================
--- wp-includes/cache.php	(revision 17517)
+++ wp-includes/cache.php	(working copy)
@@ -350,7 +350,7 @@
 		if ( isset ($this->cache[$group][$id]) ) {
 			$this->cache_hits += 1;
 			if ( is_object($this->cache[$group][$id]) )
-				return wp_clone($this->cache[$group][$id]);
+				return clone $this->cache[$group][$id];
 			else
 				return $this->cache[$group][$id];
 		}
@@ -426,7 +426,7 @@
 			$data = '';
 
 		if ( is_object($data) )
-			$data = wp_clone($data);
+			$data = clone $data;
 
 		$this->cache[$group][$id] = $data;
 
Index: wp-includes/comment.php
===================================================================
--- wp-includes/comment.php	(revision 17517)
+++ wp-includes/comment.php	(working copy)
@@ -1394,7 +1394,7 @@
 			return false;
 	}
 
-	$comment_old = wp_clone(get_comment($comment_id));
+	$comment_old = clone get_comment($comment_id);
 
 	if ( !$wpdb->update( $wpdb->comments, array('comment_approved' => $status), array('comment_ID' => $comment_id) ) ) {
 		if ( $wp_error )
Index: wp-includes/deprecated.php
===================================================================
--- wp-includes/deprecated.php	(revision 17517)
+++ wp-includes/deprecated.php	(working copy)
@@ -2602,3 +2602,20 @@
 	return true;
 }
 
+
+/**
+ * Copy an object.
+ *
+ * Returns a cloned copy of an object.
+ *
+ * @since 2.7.0
+ * @deprecated 3.2
+ *
+ * @param object $object The object to clone
+ * @return object The cloned object
+ */
+function wp_clone( $object ) {
+	_deprecated_function( __FUNCTION__, '3.2' );
+
+	return clone $object;
+}
\ No newline at end of file
Index: wp-includes/functions.php
===================================================================
--- wp-includes/functions.php	(revision 17517)
+++ wp-includes/functions.php	(working copy)
@@ -509,7 +509,7 @@
 	wp_protect_special_option( $option );
 
 	if ( is_object($newvalue) )
-		$newvalue = wp_clone($newvalue);
+		$newvalue = clone $newvalue;
 
 	$newvalue = sanitize_option( $option, $newvalue );
 	$oldvalue = get_option( $option );
@@ -590,8 +590,12 @@
 
 	wp_protect_special_option( $option );
 
+	/* 
+	 * FIXME the next two lines of code are not necessary and should be removed.
+	 * @see http://core.trac.wordpress.org/ticket/13480
+	 */
 	if ( is_object($value) )
-		$value = wp_clone($value);
+		$value = clone $value;
 
 	$value = sanitize_option( $option, $value );
 
Index: wp-includes/load.php
===================================================================
--- wp-includes/load.php	(revision 17517)
+++ wp-includes/load.php	(working copy)
@@ -552,24 +552,6 @@
 }
 
 /**
- * Copy an object.
- *
- * Returns a cloned copy of an object.
- *
- * @since 2.7.0
- *
- * @param object $object The object to clone
- * @return object The cloned object
- */
-function wp_clone( $object ) {
-	static $can_clone;
-	if ( !isset( $can_clone ) )
-		$can_clone = version_compare( phpversion(), '5.0', '>=' );
-
-	return $can_clone ? clone( $object ) : $object;
-}
-
-/**
  * Whether the current request is for a network or blog admin page
  *
  * Does not inform on whether the user is an admin! Use capability checks to
