Changeset 34590
- Timestamp:
- 09/26/2015 01:04:23 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/user-edit.php
r34021 r34590 439 439 440 440 <?php 441 /** This filter is documented in wp-admin/user-new.php */ 442 $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser ); 443 if ( $show_password_fields ) : 441 /** 442 * Filter the display of the password fields. 443 * 444 * @since 1.5.1 445 * @since 4.4.0 Now evaluated only in user-edit.php. 446 * 447 * @param bool $show Whether to show the password fields. Default true. 448 */ 449 if ( $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser ) ) : 444 450 ?> 445 451 </table>
Note: See TracChangeset
for help on using the changeset viewer.