Changeset 3286590
- Timestamp:
- 05/02/2025 11:43:49 PM (9 months ago)
- Location:
- akismet/trunk
- Files:
-
- 2 edited
-
akismet.php (modified) (2 diffs)
-
views/compatible-plugins.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
akismet/trunk/akismet.php
r3282153 r3286590 7 7 Plugin URI: https://akismet.com/ 8 8 Description: 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.4.0a2 39 Version: 5.4.0a24 10 10 Requires at least: 5.8 11 11 Requires PHP: 7.2 … … 40 40 } 41 41 42 define( 'AKISMET_VERSION', '5.4.0a2 3' );42 define( 'AKISMET_VERSION', '5.4.0a24' ); 43 43 define( 'AKISMET__MINIMUM_WP_VERSION', '5.8' ); 44 44 define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
akismet/trunk/views/compatible-plugins.php
r3265352 r3286590 18 18 <p class="akismet-card__intro"> 19 19 <?php 20 if ( $compatible_plugin_count === 0) {20 if ( 0 === $compatible_plugin_count ) { 21 21 esc_html_e( 'Akismet works with other plugins to keep spam away.', 'akismet' ); 22 22 … … 28 28 ); 29 29 } else { 30 esc_html_e( 'These plugins you\'ve installed can be protected from spam by Akismet:', 'akismet' ); 30 printf( 31 '<p>%s</p>', 32 esc_html__( 'Akismet works with other plugins to keep spam away.', 'akismet' ) 33 ); 34 35 printf( 36 '%s. %s.', 37 1 === $compatible_plugin_count 38 ? esc_html__( 'The plugin you\'ve installed is compatible', 'akismet' ) 39 : esc_html__( 'The plugins you\'ve installed are compatible', 'akismet' ), 40 1 === $compatible_plugin_count 41 ? esc_html__( 'Follow the documentation link to get started', 'akismet' ) 42 : esc_html__( 'Follow the documentation links to get started', 'akismet' ) 43 ); 31 44 } 32 45 ?>
Note: See TracChangeset
for help on using the changeset viewer.