Don't use deprecated *_usermeta() functions. Props technosailor fixes #10837

git-svn-id: http://svn.automattic.com/wordpress/trunk@13311 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin
2010-02-22 21:25:32 +00:00
parent 2b182d39d9
commit 2ce7dc4dac
14 changed files with 72 additions and 72 deletions

View File

@@ -267,7 +267,7 @@ function update_user_option( $user_id, $option_name, $newvalue, $global = false
global $wpdb;
if ( !$global )
$option_name = $wpdb->prefix . $option_name;
return update_usermeta( $user_id, $option_name, $newvalue );
return update_user_meta( $user_id, $option_name, $newvalue );
}
/**