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/topics.php

    r7006 r7190  
    509509
    510510        // Bail if doing an autosave
    511         if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
     511        if ( bbp_doing_autosave() ) {
    512512            return $topic_id;
    513513        }
Note: See TracChangeset for help on using the changeset viewer.