Version Description
- Replaced Feedburner HTTP link with HTTPS
Download this release
Release Info
Developer | MyThemeShop |
Plugin | WP Subscribe |
Version | 1.1.0 |
Comparing to | |
See all releases |
Code changes from version 1.0.9 to 1.1.0
- readme.txt +4 -1
- wp-subscribe.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Creator's website link: http://mythemeshop.com/plugins/wp-subscribe/
|
|
4 |
Tags: subscribe, subscription, subscription box, newsletter, subscribe widget, mailchimp, aweber, feedburner,
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -83,6 +83,9 @@ Please disable all plugins and check if plugin is working properly. Then you can
|
|
83 |
|
84 |
== Changelog ==
|
85 |
|
|
|
|
|
|
|
86 |
= 1.0.9 =
|
87 |
* Fixed spelling mistake in Pro Notification
|
88 |
|
4 |
Tags: subscribe, subscription, subscription box, newsletter, subscribe widget, mailchimp, aweber, feedburner,
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 1.1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
83 |
|
84 |
== Changelog ==
|
85 |
|
86 |
+
= 1.1.0 =
|
87 |
+
* Replaced Feedburner HTTP link with HTTPS
|
88 |
+
|
89 |
= 1.0.9 =
|
90 |
* Fixed spelling mistake in Pro Notification
|
91 |
|
wp-subscribe.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Subscribe
|
|
4 |
Plugin URI: http://mythemeshop.com/plugins/wp-subscribe/
|
5 |
Description: WP Subscribe is a simple but powerful subscription plugin which supports MailChimp, Aweber and Feedburner.
|
6 |
Author: MyThemeShop
|
7 |
-
Version: 1.0
|
8 |
Author URI: http://mythemeshop.com/
|
9 |
*/
|
10 |
|
@@ -88,7 +88,7 @@ class wp_subscribe extends WP_Widget {
|
|
88 |
|
89 |
<?php if ($instance['service'] == 'feedburner') { ?>
|
90 |
|
91 |
-
<form action="
|
92 |
<input class="email-field" type="text" value="" placeholder="<?php echo $instance['email_placeholder']; ?>" name="email">
|
93 |
<input type="hidden" value="<?php echo $instance['feedburner_id']; ?>" name="uri"><input type="hidden" name="loc" value="en_US">
|
94 |
<input class="submit" name="submit" type="submit" value="<?php echo $instance['button_text']; ?>">
|
4 |
Plugin URI: http://mythemeshop.com/plugins/wp-subscribe/
|
5 |
Description: WP Subscribe is a simple but powerful subscription plugin which supports MailChimp, Aweber and Feedburner.
|
6 |
Author: MyThemeShop
|
7 |
+
Version: 1.1.0
|
8 |
Author URI: http://mythemeshop.com/
|
9 |
*/
|
10 |
|
88 |
|
89 |
<?php if ($instance['service'] == 'feedburner') { ?>
|
90 |
|
91 |
+
<form action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('https://feedburner.google.com/fb/a/mailverify?uri=<?php echo $instance['feedburner_id']; ?>', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true" _lpchecked="1">
|
92 |
<input class="email-field" type="text" value="" placeholder="<?php echo $instance['email_placeholder']; ?>" name="email">
|
93 |
<input type="hidden" value="<?php echo $instance['feedburner_id']; ?>" name="uri"><input type="hidden" name="loc" value="en_US">
|
94 |
<input class="submit" name="submit" type="submit" value="<?php echo $instance['button_text']; ?>">
|