Make WordPress Core


Ignore:
Timestamp:
07/01/2019 12:50:14 PM (6 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-admin.

See #47632.

File:
1 edited

Legend:

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

    r45416 r45583  
    603603         * @param WP_User $profileuser User object for the current user to edit.
    604604         */
    605         if ( $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser ) ) :
     605        $show_password_fields = apply_filters( 'show_password_fields', true, $profileuser );
     606        if ( $show_password_fields ) :
    606607            ?>
    607608    </table>
Note: See TracChangeset for help on using the changeset viewer.