WordPress ReCaptcha Integration - Version 1.1.8

Version Description

  • Feature: Support AwesomeSupport
  • Feature: Support bbPress new Topics and posts
  • L10n: italian
  • Fix: Layout issue on theme twenty fifteen (recaptcha)
Download this release

Release Info

Developer podpirate
Plugin Icon 128x128 WordPress ReCaptcha Integration
Version 1.1.8
Comparing to
See all releases

Code changes from version 1.1.9 to 1.1.8

inc/class-wp_recaptcha_nocaptcha.php CHANGED
@@ -215,29 +215,28 @@ class WP_reCaptcha_NoCaptcha extends WP_reCaptcha_Captcha {
215
  $return = "<div {$attr_str}></div>";
216
  $return .= '<noscript>';
217
  if ( WP_reCaptcha::instance()->get_option('recaptcha_noscript') ) {
218
- $return .= '<div style="width: 302px; height: 462px;">' .
219
- '<div style="width: 302px; height: 422px; position: relative;">' .
220
- '<div style="width: 302px; height: 422px; position: absolute;">' .
221
  '<iframe src="https://www.google.com/recaptcha/api/fallback?k='.$attr['data-sitekey'].'"' .
222
  ' frameborder="0" scrolling="no"' .
223
- ' style="width: 302px; height:422px; border-style: none;">' .
224
  '</iframe>' .
225
  '</div>' .
 
 
 
 
 
 
 
 
226
  '</div>' .
227
- '<div style="width: 300px; height: 60px; border-style: none;' .
228
- ' bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px;' .
229
- ' background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px;">' .
230
- '<textarea id="g-recaptcha-response" name="g-recaptcha-response"' .
231
- ' class="g-recaptcha-response"' .
232
- ' style="width: 250px; height: 40px; border: 1px solid #c1c1c1;' .
233
- ' margin: 10px 25px; padding: 0px; resize: none;" value="">' .
234
- '</textarea>' .
235
- '</div>' .
236
- '</div><br>';
237
  } else {
238
  $return .= __('Please enable JavaScript to submit this form.','wp-recaptcha-integration');
239
  }
240
- $return .= '<br></noscript>';
241
  return $return;
242
  }
243
  /**
215
  $return = "<div {$attr_str}></div>";
216
  $return .= '<noscript>';
217
  if ( WP_reCaptcha::instance()->get_option('recaptcha_noscript') ) {
218
+ $return .= '<div style="width: 302px; height: 352px;">' .
219
+ '<div style="width: 302px; height: 352px; position: relative;">' .
220
+ '<div style="width: 302px; height: 352px; position: absolute;">' .
221
  '<iframe src="https://www.google.com/recaptcha/api/fallback?k='.$attr['data-sitekey'].'"' .
222
  ' frameborder="0" scrolling="no"' .
223
+ ' style="width: 302px; height:352px; border-style: none;">' .
224
  '</iframe>' .
225
  '</div>' .
226
+ '<div style="width: 250px; height: 80px; position: absolute; border-style: none;' .
227
+ ' bottom: 21px; left: 25px; margin: 0px; padding: 0px; right: 25px;">' .
228
+ '<textarea id="g-recaptcha-response" name="g-recaptcha-response"' .
229
+ ' class="g-recaptcha-response"' .
230
+ ' style="width: 250px; height: 80px; border: 1px solid #c1c1c1;' .
231
+ ' margin: 0px; padding: 0px; resize: none;" value="">' .
232
+ '</textarea>' .
233
+ '</div>' .
234
  '</div>' .
235
+ '</div>';
 
 
 
 
 
 
 
 
 
236
  } else {
237
  $return .= __('Please enable JavaScript to submit this form.','wp-recaptcha-integration');
238
  }
239
+ $return .= '</noscript>';
240
  return $return;
241
  }
242
  /**
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: security, captcha, recaptcha, no captcha, login, signup, contact form 7, ninja forms, woocommerce
5
  Requires at least: 3.8
6
  Tested up to: 4.3
7
- Stable tag: 1.1.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -252,10 +252,6 @@ I will migrate all the translation stuff there.
252
 
253
  == Changelog ==
254
 
255
- = 1.1.9 =
256
- - Fix: Layout issues on recaptcha nojs fallback (thanks to [nurupo](https://github.com/nurupo))
257
- - Metadata: add plugin textdomain
258
-
259
  = 1.1.8 =
260
  - Feature: Support AwesomeSupport
261
  - Feature: Support bbPress new Topics and posts
4
  Tags: security, captcha, recaptcha, no captcha, login, signup, contact form 7, ninja forms, woocommerce
5
  Requires at least: 3.8
6
  Tested up to: 4.3
7
+ Stable tag: 1.1.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
252
 
253
  == Changelog ==
254
 
 
 
 
 
255
  = 1.1.8 =
256
  - Feature: Support AwesomeSupport
257
  - Feature: Support bbPress new Topics and posts
wp-recaptcha-integration.php CHANGED
@@ -3,10 +3,9 @@
3
  Plugin Name: WP reCaptcha Integration
4
  Plugin URI: https://wordpress.org/plugins/wp-recaptcha-integration/
5
  Description: Integrate reCaptcha in your blog. Supports no Captcha (new style recaptcha) as well as the old style reCaptcha. Provides of the box integration for signup, login, comment forms, lost password, Ninja Forms and contact form 7.
6
- Version: 1.1.9
7
  Author: Jörn Lund
8
  Author URI: https://github.com/mcguffin/
9
- Text Domain: wp-recaptcha-integration
10
  */
11
 
12
  /* Copyright 2014 Jörn Lund (email : joern AT podpirate DOT org)
3
  Plugin Name: WP reCaptcha Integration
4
  Plugin URI: https://wordpress.org/plugins/wp-recaptcha-integration/
5
  Description: Integrate reCaptcha in your blog. Supports no Captcha (new style recaptcha) as well as the old style reCaptcha. Provides of the box integration for signup, login, comment forms, lost password, Ninja Forms and contact form 7.
6
+ Version: 1.1.7
7
  Author: Jörn Lund
8
  Author URI: https://github.com/mcguffin/
 
9
  */
10
 
11
  /* Copyright 2014 Jörn Lund (email : joern AT podpirate DOT org)