From de3a5eca3bce5e606fac0c5346902ce2f2194fc6 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 23 Apr 2010 15:32:31 +0000 Subject: [PATCH] Fix typo in inline docs. props TobiasBg. see #13088 git-svn-id: https://develop.svn.wordpress.org/trunk@14196 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 3fa6db69fc..61ee41cad9 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -275,7 +275,7 @@ function update_user_option( $user_id, $option_name, $newvalue, $global = false if ( !$global ) $option_name = $wpdb->prefix . $option_name; - // For backward compatibility. See differences between update_user_meta() and deprecated update_user_meta(). + // For backward compatibility. See differences between update_user_meta() and deprecated update_usermeta(). // http://core.trac.wordpress.org/ticket/13088 if ( is_null( $newvalue ) || is_scalar( $newvalue ) && empty( $newvalue ) ) return delete_user_meta( $user_id, $option_name );