Version Description
- Fixed the IP tracking on opening
Download this release
Release Info
Developer | satollo |
Plugin | Newsletter |
Version | 3.3.3 |
Comparing to | |
See all releases |
Code changes from version 3.3.2 to 3.3.3
- plugin.php +2 -2
- readme.txt +5 -1
- statistics/open.php +1 -0
plugin.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Newsletter
|
5 |
Plugin URI: http://www.satollo.net/plugins/newsletter
|
6 |
Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="http://www.satollo.net/plugins/newsletter#update">this page</a> to know what's changed.</strong>
|
7 |
-
Version: 3.3.
|
8 |
Author: Stefano Lissa
|
9 |
Author URI: http://www.satollo.net
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
@@ -13,7 +13,7 @@
|
|
13 |
*/
|
14 |
|
15 |
// Useed as dummy parameter on css and js links
|
16 |
-
define('NEWSLETTER_VERSION', '3.3.
|
17 |
|
18 |
global $wpdb, $newsletter;
|
19 |
|
4 |
Plugin Name: Newsletter
|
5 |
Plugin URI: http://www.satollo.net/plugins/newsletter
|
6 |
Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="http://www.satollo.net/plugins/newsletter#update">this page</a> to know what's changed.</strong>
|
7 |
+
Version: 3.3.3
|
8 |
Author: Stefano Lissa
|
9 |
Author URI: http://www.satollo.net
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
13 |
*/
|
14 |
|
15 |
// Useed as dummy parameter on css and js links
|
16 |
+
define('NEWSLETTER_VERSION', '3.3.3');
|
17 |
|
18 |
global $wpdb, $newsletter;
|
19 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing
|
3 |
Requires at least: 3.3.0
|
4 |
Tested up to: 3.5.1
|
5 |
-
Stable tag: 3.3.
|
6 |
Donate link: http://www.satollo.net/donations
|
7 |
|
8 |
Add a real newsletter to your blog. In seconds. For free. With unlimited emails and subscribers.
|
@@ -55,6 +55,10 @@ No screen shots are available at this time.
|
|
55 |
|
56 |
== Changelog ==
|
57 |
|
|
|
|
|
|
|
|
|
58 |
= 3.3.2 =
|
59 |
|
60 |
* Disabled the save button on composer when the newsletter is "sending" or "sent"
|
2 |
Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing
|
3 |
Requires at least: 3.3.0
|
4 |
Tested up to: 3.5.1
|
5 |
+
Stable tag: 3.3.3
|
6 |
Donate link: http://www.satollo.net/donations
|
7 |
|
8 |
Add a real newsletter to your blog. In seconds. For free. With unlimited emails and subscribers.
|
55 |
|
56 |
== Changelog ==
|
57 |
|
58 |
+
= 3.3.3 =
|
59 |
+
|
60 |
+
* Fixed the IP tracking on opening
|
61 |
+
|
62 |
= 3.3.2 =
|
63 |
|
64 |
* Disabled the save button on composer when the newsletter is "sending" or "sent"
|
statistics/open.php
CHANGED
@@ -8,6 +8,7 @@ list($email_id, $user_id) = explode(';', base64_decode($_GET['r']), 2);
|
|
8 |
$wpdb->insert(NEWSLETTER_STATS_TABLE, array(
|
9 |
'email_id' => $email_id,
|
10 |
'user_id' => $user_id,
|
|
|
11 |
)
|
12 |
);
|
13 |
|
8 |
$wpdb->insert(NEWSLETTER_STATS_TABLE, array(
|
9 |
'email_id' => $email_id,
|
10 |
'user_id' => $user_id,
|
11 |
+
'ip' => $_SERVER['REMOTE_ADDR']
|
12 |
)
|
13 |
);
|
14 |
|