Docs: Further clarify a comment for the main part of `wp-login.php`.
Follow-up to [52945]. Fixes #54746. Built from https://develop.svn.wordpress.org/trunk@53313 git-svn-id: http://core.svn.wordpress.org/trunk@52902 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a972e8131f
commit
4fc2b46aa0
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.0-beta3-53312';
|
$wp_version = '6.0-beta3-53313';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
|
@ -422,7 +422,10 @@ function wp_login_viewport_meta() {
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check request and redirect.
|
/*
|
||||||
|
* Main part: check the request and redirect or display a form based on the current action.
|
||||||
|
*/
|
||||||
|
|
||||||
$action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : 'login';
|
$action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : 'login';
|
||||||
$errors = new WP_Error();
|
$errors = new WP_Error();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue