Changeset 2111100
- Timestamp:
- 06/24/2019 05:03:24 AM (7 years ago)
- Location:
- goodbye-captcha/trunk
- Files:
-
- 3 edited
-
engine/modules/licenses/GdbcLicensesAdminModule.php (modified) (2 diffs)
-
goodbye-captcha.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
goodbye-captcha/trunk/engine/modules/licenses/GdbcLicensesAdminModule.php
r2096171 r2111100 185 185 186 186 if ( is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) { 187 return ( is_wp_error( $response ) && ! empty( $response->get_error_message() )) ? $response->get_error_message() : __( 'An error occurred, please try again.', 'gdbc' );187 return ( is_wp_error( $response ) && $response->get_error_message() ) ? $response->get_error_message() : __( 'An error occurred, please try again.', 'gdbc' ); 188 188 } 189 189 … … 194 194 return true; 195 195 } 196 196 197 197 198 $message = null; -
goodbye-captcha/trunk/goodbye-captcha.php
r2096171 r2111100 11 11 * Plugin URI: http://www.wpbruiser.com 12 12 * Description: An extremely powerful anti-spam plugin that blocks spambots without annoying captcha images. 13 * Version: 3.1. 2913 * Version: 3.1.30 14 14 * Author: Mihai Chelaru 15 15 * Author URI: http://www.wpbruiser.com … … 24 24 class GoodByeCaptcha 25 25 { 26 CONST PLUGIN_VERSION = '3.1. 29';26 CONST PLUGIN_VERSION = '3.1.30'; 27 27 CONST PLUGIN_SLUG = 'wp-bruiser'; 28 28 CONST PLUGIN_NAME = 'WPBruiser'; -
goodbye-captcha/trunk/readme.txt
r2096209 r2111100 5 5 Requires at least: 4.0 6 6 Tested up to: 5.2 7 Stable tag: 3.1. 297 Stable tag: 3.1.30 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 223 223 == Changelog == 224 224 225 = 3.1.30 = 226 * Fixed fatal error when using PHP 5.3.x 227 228 225 229 = 3.1.29 = 226 230 Refreshed Incapsula, Amazon and Cloudflare trusted IPs ranges
Note: See TracChangeset
for help on using the changeset viewer.