Update get_user_option()'s PHPDoc Comment to remove mentions of blog options. See #11615

git-svn-id: https://develop.svn.wordpress.org/trunk@13220 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2010-02-19 10:49:07 +00:00
parent 5c9b1907a7
commit 32ad16e1e8

View File

@ -206,16 +206,14 @@ function user_pass_ok($user_login, $user_pass) {
//
/**
* Retrieve user option that can be either global, user, or blog.
* Retrieve user option that can be either per Site or per Network.
*
* If the user ID is not given, then the current user will be used instead. If
* the user ID is given, then the user data will be retrieved. The filter for
* the result, will also pass the original option name and finally the user data
* object as the third parameter.
*
* The option will first check for the non-global name, then the global name,
* and if it still doesn't find it, it will try the blog option. The option can
* either be modified or set by a plugin.
* The option will first check for the per site name and then the per Network name.
*
* @since 2.0.0
* @uses $wpdb WordPress database object for queries.
@ -764,4 +762,4 @@ function clean_user_cache($id) {
wp_cache_delete($user->user_nicename, 'userslugs');
}
?>
?>