Version Description
- Bug fix: fallback normalizer method called incorrectly
Download this release
Release Info
Developer | joedolson |
Plugin | WP to Twitter |
Version | 3.3.4 |
Comparing to | |
See all releases |
Code changes from version 3.3.3 to 3.3.4
- readme.txt +5 -1
- wp-to-twitter.php +3 -3
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Tested up to: 4.9
|
|
7 |
Requires PHP: 5.3
|
8 |
License: GPLv2 or later
|
9 |
Text Domain: wp-to-twitter
|
10 |
-
Stable tag: 3.3.
|
11 |
|
12 |
Posts a Twitter update when you update your WordPress blog or add a link, with your chosen URL shortening service.
|
13 |
|
@@ -65,6 +65,10 @@ Check out my <a href="https://github.com/joedolson/plugin-extensions/tree/master
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
|
|
|
|
|
|
|
|
68 |
= 3.3.3 =
|
69 |
|
70 |
* Removed: upgrade paths from version 2.4.x
|
7 |
Requires PHP: 5.3
|
8 |
License: GPLv2 or later
|
9 |
Text Domain: wp-to-twitter
|
10 |
+
Stable tag: 3.3.4
|
11 |
|
12 |
Posts a Twitter update when you update your WordPress blog or add a link, with your chosen URL shortening service.
|
13 |
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
+
= 3.3.4 =
|
69 |
+
|
70 |
+
* Bug fix: fallback normalizer method called incorrectly
|
71 |
+
|
72 |
= 3.3.3 =
|
73 |
|
74 |
* Removed: upgrade paths from version 2.4.x
|
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.
|
21 |
*/
|
22 |
|
23 |
/*
|
@@ -56,7 +56,7 @@ require_once( plugin_dir_path( __FILE__ ) . 'wpt-widget.php' );
|
|
56 |
require_once( plugin_dir_path( __FILE__ ) . 'wpt-rate-limiting.php' );
|
57 |
|
58 |
global $wpt_version;
|
59 |
-
$wpt_version = '3.3.
|
60 |
|
61 |
add_action( 'init', 'wpt_load_textdomain' );
|
62 |
/**
|
@@ -511,7 +511,7 @@ function wpt_normalize( $string ) {
|
|
511 |
return normalizer_normalize( $string );
|
512 |
} else {
|
513 |
$normalizer = new WPT_Normalizer();
|
514 |
-
if ( $normalizer->
|
515 |
return $string;
|
516 |
}
|
517 |
|
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.4
|
21 |
*/
|
22 |
|
23 |
/*
|
56 |
require_once( plugin_dir_path( __FILE__ ) . 'wpt-rate-limiting.php' );
|
57 |
|
58 |
global $wpt_version;
|
59 |
+
$wpt_version = '3.3.4';
|
60 |
|
61 |
add_action( 'init', 'wpt_load_textdomain' );
|
62 |
/**
|
511 |
return normalizer_normalize( $string );
|
512 |
} else {
|
513 |
$normalizer = new WPT_Normalizer();
|
514 |
+
if ( $normalizer->is_normalized( $string ) ) {
|
515 |
return $string;
|
516 |
}
|
517 |
|