Make WordPress Core


Ignore:
Timestamp:
07/19/2021 09:13:36 PM (3 years ago)
Author:
johnbillion
Message:

Application Passwords: Improve various user-facing and developer-facing terminology.

Fixes #53503, #53691

File:
1 edited

Legend:

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

    r50981 r51463  
    605605 *
    606606 *     @type string $app_name    The suggested name of the application.
    607  *     @type string $app_id      A uuid provided by the application to uniquely identify it.
    608  *     @type string $success_url The url the user will be redirected to after approving the application.
    609  *     @type string $reject_url  The url the user will be redirected to after rejecting the application.
     607 *     @type string $app_id      A UUID provided by the application to uniquely identify it.
     608 *     @type string $success_url The URL the user will be redirected to after approving the application.
     609 *     @type string $reject_url  The URL the user will be redirected to after rejecting the application.
    610610 * }
    611611 * @param WP_User $user The user authorizing the application.
     
    621621            $error->add(
    622622                'invalid_redirect_scheme',
    623                 __( 'The success url must be served over a secure connection.' )
     623                __( 'The success URL must be served over a secure connection.' )
    624624            );
    625625        }
     
    632632            $error->add(
    633633                'invalid_redirect_scheme',
    634                 __( 'The rejection url must be served over a secure connection.' )
     634                __( 'The rejection URL must be served over a secure connection.' )
    635635            );
    636636        }
     
    640640        $error->add(
    641641            'invalid_app_id',
    642             __( 'The app id must be a uuid.' )
     642            __( 'The application ID must be a UUID.' )
    643643        );
    644644    }
Note: See TracChangeset for help on using the changeset viewer.