Make WordPress Core

Changeset 25997


Ignore:
Timestamp:
10/30/2013 08:17:21 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Correct $user_id parameter description. props mauryaratan, Corphi. fixes #25774.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/user.php

    r25978 r25997  
    813813 * @link http://codex.wordpress.org/Function_Reference/add_user_meta
    814814 *
    815  * @param int $user_id Post ID.
     815 * @param int $user_id User ID.
    816816 * @param string $meta_key Metadata name.
    817817 * @param mixed $meta_value Metadata value.
     
    850850 * @link http://codex.wordpress.org/Function_Reference/get_user_meta
    851851 *
    852  * @param int $user_id Post ID.
     852 * @param int $user_id User ID.
    853853 * @param string $key Optional. The meta key to retrieve. By default, returns data for all keys.
    854854 * @param bool $single Whether to return a single value.
     
    872872 * @link http://codex.wordpress.org/Function_Reference/update_user_meta
    873873 *
    874  * @param int $user_id Post ID.
     874 * @param int $user_id User ID.
    875875 * @param string $meta_key Metadata key.
    876876 * @param mixed $meta_value Metadata value.
Note: See TracChangeset for help on using the changeset viewer.