Plugin Directory

Changeset 3348405


Ignore:
Timestamp:
08/22/2025 02:28:37 AM (6 months ago)
Author:
bluefuton
Message:

Akismet: fix default strictness selection

Location:
akismet/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • akismet/trunk/akismet.php

    r3348404 r3348405  
    77Plugin URI: https://akismet.com/
    88Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. Akismet Anti-spam keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key.
    9 Version: 5.5.1a3
     9Version: 5.5.1a4
    1010Requires at least: 5.8
    1111Requires PHP: 7.2
     
    4040}
    4141
    42 define( 'AKISMET_VERSION', '5.5.1a3' );
     42define( 'AKISMET_VERSION', '5.5.1a4' );
    4343define( 'AKISMET__MINIMUM_WP_VERSION', '5.8' );
    4444define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • akismet/trunk/views/config.php

    r3275197 r3348405  
    169169                                        <div>
    170170                                            <label class="akismet-settings__row-input-label" for="akismet_strictness_0">
    171                                                 <input type="radio" name="akismet_strictness" id="akismet_strictness_0" value="0" <?php checked( '0', get_option( 'akismet_strictness' ) ); ?> />
     171                                                <input type="radio" name="akismet_strictness" id="akismet_strictness_0" value="0" <?php checked( true, get_option( 'akismet_strictness' ) !== '1' ); ?> />
    172172                                                <span class="akismet-settings__row-label-text">
    173173                                                    <?php esc_html_e( 'Always put spam in the Spam folder for review.', 'akismet' ); ?>
Note: See TracChangeset for help on using the changeset viewer.