Always replace dashes with underscores for keys in get_user_option().

git-svn-id: https://develop.svn.wordpress.org/trunk@14309 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-04-29 20:19:47 +00:00
parent cec049295c
commit 854c4d8fa7
1 changed files with 3 additions and 3 deletions

View File

@ -238,13 +238,13 @@ function get_user_option( $option, $user = 0, $deprecated = '' ) {
if ( empty($user) ) {
$user = wp_get_current_user();
// Keys used as object vars cannot have dashes.
$key = str_replace('-', '_', $option);
} else {
$user = get_userdata($user);
$key = $option;
}
// Keys used as object vars cannot have dashes.
$key = str_replace('-', '_', $option);
if ( isset( $user->{$wpdb->prefix . $key} ) ) // Blog specific
$result = $user->{$wpdb->prefix . $key};
elseif ( isset( $user->{$key} ) ) // User specific and cross-blog