Make WordPress Core

Changeset 59927


Ignore:
Timestamp:
03/04/2025 02:17:18 PM (8 weeks ago)
Author:
johnbillion
Message:

Docs: Various improvements to inline documentation.

See #62281

Location:
trunk/src/wp-includes
Files:
3 edited

Legend:

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

    r59828 r59927  
    1212 *
    1313 * @since 2.0.0
    14  * @since 6.8.0 The `user_pass` property is now hashed using bcrypt instead of phpass.
     14 * @since 6.8.0 The `user_pass` property is now hashed using bcrypt by default instead of phpass.
     15 *              Existing passwords may still be hashed using phpass.
    1516 *
    1617 * @property string $nickname
  • trunk/src/wp-includes/update.php

    r59926 r59927  
    155155     *
    156156     * @since 4.9.0
     157     * @since 6.1.0 Added `$extensions`, `$platform_flags`, and `$image_support` to the `$query` parameter.
    157158     *
    158159     * @param array $query {
     
    168169     *     @type int    $multisite_enabled  Whether this WordPress installation uses Multisite.
    169170     *     @type int    $initial_db_version Database version of WordPress at time of installation.
     171     *     @type array  $extensions         List of PHP extensions and their versions.
     172     *     @type array  $platform_flags     List containing the operating system name and bit support.
     173     *     @type array  $image_support      List of image formats supported by GD and Imagick.
    170174     * }
    171175     */
  • trunk/src/wp-includes/user.php

    r59900 r59927  
    24572457     * @since 4.9.0
    24582458     * @since 5.8.0 The `$userdata` parameter was added.
    2459      * @since 6.8.0 The user's password is now hashed using bcrypt instead of phpass.
     2459     * @since 6.8.0 The user's password is now hashed using bcrypt by default instead of phpass.
    24602460     *
    24612461     * @param array    $data {
Note: See TracChangeset for help on using the changeset viewer.