diff --git src/wp-includes/template.php src/wp-includes/template.php
index 989d630f7f..0e128ecae1 100644
|
|
|
function get_singular_template() { |
| 654 | 654 | * |
| 655 | 655 | * @see get_query_template() |
| 656 | 656 | * |
| 657 | | * @global array $posts |
| 658 | 657 | * |
| 659 | 658 | * @return string Full path to attachment template file. |
| 660 | 659 | */ |
diff --git src/wp-includes/theme.php src/wp-includes/theme.php
index 81c91ab5cc..1638128b4c 100644
|
|
|
function _wp_customize_include() { |
| 3591 | 3591 | * @since 4.7.0 |
| 3592 | 3592 | * @access private |
| 3593 | 3593 | * |
| 3594 | | * @global wpdb $wpdb WordPress database abstraction object. |
| 3595 | 3594 | * @global WP_Customize_Manager $wp_customize Customizer instance. |
| 3596 | 3595 | * |
| 3597 | 3596 | * @param string $new_status New post status. |
| … |
… |
function _wp_customize_include() { |
| 3599 | 3598 | * @param WP_Post $changeset_post Changeset post object. |
| 3600 | 3599 | */ |
| 3601 | 3600 | function _wp_customize_publish_changeset( $new_status, $old_status, $changeset_post ) { |
| 3602 | | global $wp_customize, $wpdb; |
| | 3601 | global $wp_customize; |
| 3603 | 3602 | |
| 3604 | 3603 | $is_publishing_changeset = ( |
| 3605 | 3604 | 'customize_changeset' === $changeset_post->post_type |
diff --git src/wp-includes/user.php src/wp-includes/user.php
index 5b9dacc20f..c1a16ce471 100644
|
|
|
All at ###SITENAME### |
| 4816 | 4816 | * Returns a confirmation key for a user action and stores the hashed version for future comparison. |
| 4817 | 4817 | * |
| 4818 | 4818 | * @since 4.9.6 |
| | 4819 | * @global PasswordHash $wp_hasher Portable PHP password hashing framework. |
| 4819 | 4820 | * |
| 4820 | 4821 | * @param int $request_id Request ID. |
| 4821 | 4822 | * @return string Confirmation key. |
| … |
… |
function wp_generate_user_request_key( $request_id ) { |
| 4847 | 4848 | * Validates a user request by comparing the key with the request's key. |
| 4848 | 4849 | * |
| 4849 | 4850 | * @since 4.9.6 |
| | 4851 | * @global PasswordHash $wp_hasher Portable PHP password hashing framework. |
| 4850 | 4852 | * |
| 4851 | 4853 | * @param string $request_id ID of the request being confirmed. |
| 4852 | 4854 | * @param string $key Provided key to validate. |