WP to Twitter - Version 3.3.12

Version Description

  • Missed ssl_verify=false removed
Download this release

Release Info

Developer joedolson
Plugin Icon 128x128 WP to Twitter
Version 3.3.12
Comparing to
See all releases

Code changes from version 3.3.11 to 3.3.12

Files changed (3) hide show
  1. readme.txt +6 -2
  2. wp-to-twitter.php +2 -2
  3. wpt-functions.php +1 -2
readme.txt CHANGED
@@ -3,11 +3,11 @@ Contributors: joedolson
3
  Donate link: http://www.joedolson.com/donate/
4
  Tags: twitter, microblogging, su.pr, bitly, yourls, redirect, shortener, post, links, social, sharing, media, tweet
5
  Requires at least: 4.4
6
- Tested up to: 5.1
7
  Requires PHP: 5.3
8
  License: GPLv2 or later
9
  Text Domain: wp-to-twitter
10
- Stable tag: 3.3.11
11
 
12
  Posts a Twitter update when you update your WordPress blog or add a link, with your chosen URL shortening service.
13
 
@@ -63,6 +63,10 @@ Check out my <a href="https://github.com/joedolson/plugin-extensions/tree/master
63
 
64
  == Changelog ==
65
 
 
 
 
 
66
  = 3.3.11 =
67
 
68
  * Pass post ID to wpt_retweet_text filter.
3
  Donate link: http://www.joedolson.com/donate/
4
  Tags: twitter, microblogging, su.pr, bitly, yourls, redirect, shortener, post, links, social, sharing, media, tweet
5
  Requires at least: 4.4
6
+ Tested up to: 5.2
7
  Requires PHP: 5.3
8
  License: GPLv2 or later
9
  Text Domain: wp-to-twitter
10
+ Stable tag: 3.3.12
11
 
12
  Posts a Twitter update when you update your WordPress blog or add a link, with your chosen URL shortening service.
13
 
63
 
64
  == Changelog ==
65
 
66
+ = 3.3.12 =
67
+
68
+ * Missed ssl_verify=false removed
69
+
70
  = 3.3.11 =
71
 
72
  * Pass post ID to wpt_retweet_text filter.
wp-to-twitter.php CHANGED
@@ -17,7 +17,7 @@
17
  * License: GPL-2.0+
18
  * License URI: http://www.gnu.org/license/gpl-2.0.txt
19
  * Domain Path: lang
20
- * Version: 3.3.11
21
  */
22
 
23
  /*
@@ -57,7 +57,7 @@ require_once( plugin_dir_path( __FILE__ ) . 'wpt-widget.php' );
57
  require_once( plugin_dir_path( __FILE__ ) . 'wpt-rate-limiting.php' );
58
 
59
  global $wpt_version;
60
- $wpt_version = '3.3.11';
61
 
62
  add_action( 'init', 'wpt_load_textdomain' );
63
  /**
17
  * License: GPL-2.0+
18
  * License URI: http://www.gnu.org/license/gpl-2.0.txt
19
  * Domain Path: lang
20
+ * Version: 3.3.12
21
  */
22
 
23
  /*
57
  require_once( plugin_dir_path( __FILE__ ) . 'wpt-rate-limiting.php' );
58
 
59
  global $wpt_version;
60
+ $wpt_version = '3.3.12';
61
 
62
  add_action( 'init', 'wpt_load_textdomain' );
63
  /**
wpt-functions.php CHANGED
@@ -440,7 +440,6 @@ function wpt_fetch_url( $url, $method = 'GET', $body = '', $headers = '', $retur
440
  'method' => $method,
441
  'body' => $body,
442
  'headers' => $headers,
443
- 'sslverify' => false,
444
  'user-agent' => 'WP to Twitter/http://www.joedolson.com/wp-to-twitter/',
445
  )
446
  );
@@ -629,7 +628,7 @@ function wpt_get_support_form() {
629
  global $current_user, $wpt_version;
630
  $current_user = wp_get_current_user();
631
  $request = '';
632
- $response_email = '';
633
  // send fields for WP to Twitter.
634
  $license = ( '' != get_option( 'wpt_license_key' ) ) ? get_option( 'wpt_license_key' ) : 'none';
635
  if ( 'none' != $license ) {
440
  'method' => $method,
441
  'body' => $body,
442
  'headers' => $headers,
 
443
  'user-agent' => 'WP to Twitter/http://www.joedolson.com/wp-to-twitter/',
444
  )
445
  );
628
  global $current_user, $wpt_version;
629
  $current_user = wp_get_current_user();
630
  $request = '';
631
+ $response_email = $current_user->user_email;
632
  // send fields for WP to Twitter.
633
  $license = ( '' != get_option( 'wpt_license_key' ) ) ? get_option( 'wpt_license_key' ) : 'none';
634
  if ( 'none' != $license ) {