Skip to:
Content

bbPress.org


Ignore:
Timestamp:
02/18/2021 05:35:00 AM (4 years ago)
Author:
johnjamesjacoby
Message:

Users: Improve UX of form-user-passwords.php template part.

This change makes sure that the "Generate Password" UI is hidden by default if the browser has JavaScript enabled, and that the traditional UI is visible if JavaScript is not enabled.

It also includes the following related improvements:

  • Introduce bbp_doing_script_debug() and bbp_doing_autosave() helpers, and use them where needed
  • Introduce bbp_asset_version() and bbp_get_asset_version() to bust asset cache when debugging
  • Update forum-user-passwords.php template part to swap out body class and add missing element ID
  • Update password form styling in bbpress.css default theme compat CSS

In trunk for 2.7.0. Fixes #3421.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/forums.php

    r7084 r7190  
    296296
    297297        // Bail if doing an autosave
    298         if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
     298        if ( bbp_doing_autosave() ) {
    299299            return $forum_id;
    300300        }
Note: See TracChangeset for help on using the changeset viewer.