Changeset 3371382
- Timestamp:
- 10/01/2025 06:59:42 PM (3 months ago)
- Location:
- akismet/trunk
- Files:
-
- 2 edited
-
akismet.php (modified) (2 diffs)
-
class.akismet-rest-api.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
akismet/trunk/akismet.php
r3371378 r3371382 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.5.1a 99 Version: 5.5.1a10 10 10 Requires at least: 5.8 11 11 Requires PHP: 7.2 … … 40 40 } 41 41 42 define( 'AKISMET_VERSION', '5.5.1a 9' );42 define( 'AKISMET_VERSION', '5.5.1a10' ); 43 43 define( 'AKISMET__MINIMUM_WP_VERSION', '5.8' ); 44 44 define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
akismet/trunk/class.akismet-rest-api.php
r3371378 r3371382 29 29 'type' => 'string', 30 30 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 31 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/ get/', 'akismet' ),31 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/account', 'akismet' ), 32 32 ), 33 33 ), … … 120 120 'type' => 'string', 121 121 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 122 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/ get/', 'akismet' ),122 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/account', 'akismet' ), 123 123 ), 124 124 ), … … 133 133 'type' => 'string', 134 134 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 135 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/ get/', 'akismet' ),135 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/account', 'akismet' ), 136 136 ), 137 137 ), … … 146 146 'type' => 'string', 147 147 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 148 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/ get/', 'akismet' ),148 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/account', 'akismet' ), 149 149 ), 150 150 ),
Note: See TracChangeset
for help on using the changeset viewer.