Simple History - Version 2.29.1

Version Description

(December 2018) =

  • Fix another PHP 7.3 warning. Should fix https://wordpress.org/support/topic/php-7-3-compatibility-3/.
Download this release

Release Info

Developer eskapism
Plugin Icon 128x128 Simple History
Version 2.29.1
Comparing to
See all releases

Code changes from version 2.29 to 2.29.1

Files changed (4) hide show
  1. composer.json +1 -1
  2. index.php +2 -2
  3. loggers/SimplePluginLogger.php +1 -1
  4. readme.txt +5 -1
composer.json CHANGED
@@ -13,7 +13,7 @@
13
  "require": {
14
  "php": ">=5.3.0"
15
  },
16
- "version": "2.29",
17
  "authors": [
18
  {
19
  "name": "Pär Thernström",
13
  "require": {
14
  "php": ">=5.3.0"
15
  },
16
+ "version": "2.29.1",
17
  "authors": [
18
  {
19
  "name": "Pär Thernström",
index.php CHANGED
@@ -5,7 +5,7 @@
5
  * Text Domain: simple-history
6
  * Domain Path: /languages
7
  * Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
8
- * Version: 2.29
9
  * Author: Pär Thernström
10
  * Author URI: http://simple-history.com/
11
  * License: GPL2
@@ -47,7 +47,7 @@ if ( $ok_php_version && $ok_wp_version ) {
47
  */
48
 
49
  if ( ! defined( 'SIMPLE_HISTORY_VERSION' ) ) {
50
- define( 'SIMPLE_HISTORY_VERSION', '2.29' );
51
  }
52
 
53
  if ( ! defined( 'SIMPLE_HISTORY_PATH' ) ) {
5
  * Text Domain: simple-history
6
  * Domain Path: /languages
7
  * Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
8
+ * Version: 2.29.1
9
  * Author: Pär Thernström
10
  * Author URI: http://simple-history.com/
11
  * License: GPL2
47
  */
48
 
49
  if ( ! defined( 'SIMPLE_HISTORY_VERSION' ) ) {
50
+ define( 'SIMPLE_HISTORY_VERSION', '2.29.1' );
51
  }
52
 
53
  if ( ! defined( 'SIMPLE_HISTORY_PATH' ) ) {
loggers/SimplePluginLogger.php CHANGED
@@ -1092,7 +1092,7 @@ class SimplePluginLogger extends SimpleLogger {
1092
 
1093
  case 'plugin_install_source_file':
1094
  if ( ! isset( $context['plugin_upload_name'] ) || ! isset( $context['plugin_install_source'] ) ) {
1095
- continue;
1096
  }
1097
 
1098
  if ( 'upload' == $context['plugin_install_source'] ) {
1092
 
1093
  case 'plugin_install_source_file':
1094
  if ( ! isset( $context['plugin_upload_name'] ) || ! isset( $context['plugin_install_source'] ) ) {
1095
+ break;
1096
  }
1097
 
1098
  if ( 'upload' == $context['plugin_install_source'] ) {
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: history, log, changes, changelog, audit, audit log, event log, user tracki
5
  Requires at least: 4.5.1
6
  Tested up to: 4.9
7
  Requires PHP: 5.3
8
- Stable tag: 2.29
9
 
10
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
11
 
@@ -181,6 +181,10 @@ A simple way to see any uncommon activity, for example an increased number of lo
181
 
182
  ## Changelog
183
 
 
 
 
 
184
  = 2.29 (December 2018) =
185
 
186
  - Make log welcome message translateable.
5
  Requires at least: 4.5.1
6
  Tested up to: 4.9
7
  Requires PHP: 5.3
8
+ Stable tag: 2.29.1
9
 
10
  View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
11
 
181
 
182
  ## Changelog
183
 
184
+ = 2.29.1 (December 2018) =
185
+
186
+ - Fix another PHP 7.3 warning. Should fix https://wordpress.org/support/topic/php-7-3-compatibility-3/.
187
+
188
  = 2.29 (December 2018) =
189
 
190
  - Make log welcome message translateable.