Make WordPress Core


Ignore:
Timestamp:
10/30/2014 01:04:55 AM (11 years ago)
Author:
DrewAPicture
Message:

Remove redundant and erroneous @uses tag from most core inline documentation.

Per our inline documentation standards, no further use of the @uses tag is recommended as used and used-by relationships can be derived through other means. This removes most uses of the tag in core documentation, with remaining tags to be converted to @global or @see as they apply.

Fixes #30191.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-signup.php

    r29205 r30105  
    154154 * @since MU
    155155 *
    156  * @uses wp_get_current_user() to retrieve the current user
    157  * @uses wpmu_validate_blog_signup() to validate new site signup for the current user
    158156 * @return array Contains the new site data and error messages.
    159157 */
     
    209207 * @since MU
    210208 *
    211  * @uses wpmu_validate_user_signup() to retrieve an array of user data
    212209 * @return array Contains username, email, and error messages.
    213210 */
     
    221218 * @since MU
    222219 *
    223  * @uses wp_get_current_user() to get the current user
    224220 * @param string $blogname The new site name
    225221 * @param string $blog_title The new blog title
     
    304300 * @since MU
    305301 *
    306  * @uses wp_get_current_user() to retrieve the current user
    307  * @uses wpmu_create_blog() to add a new site
    308  * @uses confirm_another_blog_signup() to confirm the user's new site signup
    309302 * @return bool True if blog signup was validated, false if error
    310303 */
     
    395388 * @since MU
    396389 *
    397  * @uses apply_filters() filter $filtered_results
    398  * @uses show_user_form() to display the user registration form
    399390 * @param string $user_name The username
    400391 * @param string $user_email The user's email
     
    468459 * @since MU
    469460 *
    470  * @uses validate_user_form() to retrieve an array of the user data
    471  * @uses wpmu_signup_user() to signup the new user
    472  * @uses confirm_user_signup() to confirm the new user signup
    473461 * @return bool True if new user signup was validated, false if error
    474462 */
     
    520508 * @since MU
    521509 *
    522  * @uses apply_filters() to filter $filtered_results
    523  * @uses show_blog_form() to display the blog signup form
    524510 * @param string $user_name The username
    525511 * @param string $user_email The user's email address
     
    585571 * @since MU
    586572 *
    587  * @uses wpmu_validate_user_signup() to retrieve an array of the new user data and errors
    588  * @uses wpmu_validate_blog_signup() to retrieve an array of the new site data and errors
    589  * @uses apply_filters() to make signup $meta filterable
    590  * @uses signup_user() to signup a new user
    591  * @uses signup_blog() to signup a the new user to a new site
    592573 * @return bool True if the site signup was validated, false if error
    593574 */
Note: See TracChangeset for help on using the changeset viewer.