Email Log - Version 1.7.1

Version Description

Fix the bug that was introduced in v1.7

Download this release

Release Info

Developer sudar
Plugin Icon 128x128 Email Log
Version 1.7.1
Comparing to
See all releases

Code changes from version 1.7 to 1.7.1

Files changed (4) hide show
  1. email-log.php +1 -1
  2. include/install.php +5 -5
  3. languages/email-log.pot +3 -3
  4. readme.txt +7 -1
email-log.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://sudarmuthu.com/wordpress/email-log
5
  Description: Logs every email sent through WordPress
6
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
7
  Author: Sudar
8
- Version: 1.7
9
  Author URI: http://sudarmuthu.com/
10
  Text Domain: email-log
11
  Domain Path: languages/
5
  Description: Logs every email sent through WordPress
6
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
7
  Author: Sudar
8
+ Version: 1.7.1
9
  Author URI: http://sudarmuthu.com/
10
  Text Domain: email-log
11
  Domain Path: languages/
include/install.php CHANGED
@@ -27,7 +27,7 @@ class Email_Log_Init {
27
  *
28
  * @global object $wpdb
29
  */
30
- public static function activate( $network_wide ) {
31
  global $wpdb;
32
 
33
  if ( is_multisite() && $network_wide ) {
@@ -67,13 +67,13 @@ class Email_Log_Init {
67
  /**
68
  * Delete email log table when a blog is deleted
69
  *
70
- * @since 1.7
71
  * @static
72
  * @access public
73
  *
74
  * @global object $wpdb
75
- * @param $tables - List of tables to be deleted
76
- * @return $tables - List of tables to be deleted with the plugin's table name
77
  */
78
  public static function on_delete_blog( $tables ) {
79
  global $wpdb;
@@ -84,7 +84,7 @@ class Email_Log_Init {
84
  /**
85
  * Create email log table
86
  *
87
- * @since 1.7
88
  * @static
89
  * @access private
90
  *
27
  *
28
  * @global object $wpdb
29
  */
30
+ public static function on_activate( $network_wide ) {
31
  global $wpdb;
32
 
33
  if ( is_multisite() && $network_wide ) {
67
  /**
68
  * Delete email log table when a blog is deleted
69
  *
70
+ * @since 1.7
71
  * @static
72
  * @access public
73
  *
74
  * @global object $wpdb
75
+ * @param array $tables List of tables to be deleted
76
+ * @return array $tables Modified list of tables to be deleted
77
  */
78
  public static function on_delete_blog( $tables ) {
79
  global $wpdb;
84
  /**
85
  * Create email log table
86
  *
87
+ * @since 1.7
88
  * @static
89
  * @access private
90
  *
languages/email-log.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Email Log package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Log 1.7\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/email-log\n"
7
- "POT-Creation-Date: 2014-03-30 07:34:34+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  msgid "Buy Addons"
17
  msgstr ""
18
 
19
- #. #-#-#-#-# email-log.pot (Email Log 1.7) #-#-#-#-#
20
  #. Plugin Name of the plugin/theme
21
  #: email-log.php:101
22
  msgid "Email Log"
2
  # This file is distributed under the same license as the Email Log package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Log 1.7.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/email-log\n"
7
+ "POT-Creation-Date: 2014-04-02 09:23:41+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
16
  msgid "Buy Addons"
17
  msgstr ""
18
 
19
+ #. #-#-#-#-# email-log.pot (Email Log 1.7.1) #-#-#-#-#
20
  #. Plugin Name of the plugin/theme
21
  #: email-log.php:101
22
  msgid "Email Log"
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: sudar
3
  Tags: email, wpmu, wordpress-mu, log
4
  Requires at least: 3.3
5
  Tested up to: 3.8.1
6
- Stable tag: 1.7
7
 
8
  Logs every email sent through WordPress. Works with WordPress Multisite as well
9
 
@@ -112,6 +112,9 @@ Extract the zip file and just drop the contents in the wp-content/plugins/ direc
112
  This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
113
  == Changelog ==
114
 
 
 
 
115
  = v1.7 (2014-03-29) - (Dev time: 2.5 hours) =
116
  - Fix: Fix whitespace
117
  - New: Add support for WordPress Multisite (issue #18)
@@ -200,6 +203,9 @@ This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/
200
 
201
  == Upgrade Notice ==
202
 
 
 
 
203
  = 1.6 =
204
  Ability to view content of the email
205
 
3
  Tags: email, wpmu, wordpress-mu, log
4
  Requires at least: 3.3
5
  Tested up to: 3.8.1
6
+ Stable tag: 1.7.1
7
 
8
  Logs every email sent through WordPress. Works with WordPress Multisite as well
9
 
112
  This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
113
  == Changelog ==
114
 
115
+ = v1.7.1 (2014-04-02) - (Dev time: 0.5 hours) =
116
+ - Fix: Fix the issue that was preventing the tables to be created
117
+
118
  = v1.7 (2014-03-29) - (Dev time: 2.5 hours) =
119
  - Fix: Fix whitespace
120
  - New: Add support for WordPress Multisite (issue #18)
203
 
204
  == Upgrade Notice ==
205
 
206
+ = 1.7.1 =
207
+ Fix the bug that was introduced in v1.7
208
+
209
  = 1.6 =
210
  Ability to view content of the email
211