Docs: Relocate the hook doc for the `show_password_fields` filter to its duplicate, since the original was removed in [34582].

Adds a changelog entry noting the adjustment in behavior, and simplifies the conditional logic.

Fixes #15115.

Built from https://develop.svn.wordpress.org/trunk@34590


git-svn-id: http://core.svn.wordpress.org/trunk@34554 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-09-26 13:05:26 +00:00
parent 8d96a53ba4
commit efad273513
2 changed files with 10 additions and 4 deletions

View File

@ -438,9 +438,15 @@ if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_c
</tr> </tr>
<?php <?php
/** This filter is documented in wp-admin/user-new.php */ /**
$show_password_fields = apply_filters( 'show_password_fields', true, $profileuser ); * Filter the display of the password fields.
if ( $show_password_fields ) : *
* @since 1.5.1
* @since 4.4.0 Now evaluated only in user-edit.php.
*
* @param bool $show Whether to show the password fields. Default true.
*/
if ( $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser ) ) :
?> ?>
</table> </table>

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-34589'; $wp_version = '4.4-alpha-34590';
/** /**
* 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.