Make WordPress Core


Ignore:
Timestamp:
09/11/2024 12:06:15 PM (19 months ago)
Author:
johnbillion
Message:

Docs: Various docblock improvements and corrections.

See #61608

File:
1 edited

Legend:

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

    r58838 r59009  
    25652565if ( ! function_exists( 'wp_hash_password' ) ) :
    25662566    /**
    2567      * Creates a hash (encrypt) of a plain text password.
     2567     * Creates a hash of a plain text password.
    25682568     *
    25692569     * For integration with other applications, this function can be overwritten to
    2570      * instead use the other package password checking algorithm.
     2570     * instead use the other package password hashing algorithm.
    25712571     *
    25722572     * @since 2.5.0
     
    25922592if ( ! function_exists( 'wp_check_password' ) ) :
    25932593    /**
    2594      * Checks the plaintext password against the encrypted Password.
     2594     * Checks a plaintext password against a hashed password.
    25952595     *
    25962596     * Maintains compatibility between old version and the new cookie authentication
     
    26002600     *
    26012601     * For integration with other applications, this function can be overwritten to
    2602      * instead use the other package password checking algorithm.
     2602     * instead use the other package password hashing algorithm.
    26032603     *
    26042604     * @since 2.5.0
     
    27932793if ( ! function_exists( 'wp_set_password' ) ) :
    27942794    /**
    2795      * Updates the user's password with a new encrypted one.
     2795     * Updates the user's password with a new hashed one.
    27962796     *
    27972797     * For integration with other applications, this function can be overwritten to
Note: See TracChangeset for help on using the changeset viewer.