Version Description
(July 2018) = - Fix 5.3 compatibility.
Download this release
Release Info
Developer | eskapism |
Plugin | Simple History |
Version | 2.26.1 |
Comparing to | |
See all releases |
Code changes from version 2.26 to 2.26.1
- composer.json +1 -1
- index.php +2 -2
- loggers/Plugin_ACF.php +1 -1
- readme.txt +4 -1
composer.json
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
"require": {
|
14 |
"php": ">=5.3.0"
|
15 |
},
|
16 |
-
"version": "2.26",
|
17 |
"authors": [
|
18 |
{
|
19 |
"name": "Pär Thernström",
|
13 |
"require": {
|
14 |
"php": ">=5.3.0"
|
15 |
},
|
16 |
+
"version": "2.26.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.26
|
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.26' );
|
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.26.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.26.1' );
|
51 |
}
|
52 |
|
53 |
if ( ! defined( 'SIMPLE_HISTORY_PATH' ) ) {
|
loggers/Plugin_ACF.php
CHANGED
@@ -193,7 +193,7 @@ if ( ! class_exists( 'Plugin_ACF' ) ) {
|
|
193 |
[_product_images_0_image_related] => field_59aaedbc3ae10
|
194 |
[product_images_1_image] => 574
|
195 |
*/
|
196 |
-
$prev_post_meta = isset( $this->oldPostData['prev_post_meta'] ) ? $this->oldPostData['prev_post_meta'] :
|
197 |
|
198 |
$new_post_meta = get_post_custom( $post_id );
|
199 |
$new_post_meta = array_map( 'reset', $new_post_meta );
|
193 |
[_product_images_0_image_related] => field_59aaedbc3ae10
|
194 |
[product_images_1_image] => 574
|
195 |
*/
|
196 |
+
$prev_post_meta = isset( $this->oldPostData['prev_post_meta'] ) ? $this->oldPostData['prev_post_meta'] : array();
|
197 |
|
198 |
$new_post_meta = get_post_custom( $post_id );
|
199 |
$new_post_meta = array_map( 'reset', $new_post_meta );
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: history, log, changes, changelog, audit, trail, pages, attachments, users,
|
|
5 |
Requires at least: 4.5.1
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.3
|
8 |
-
Stable tag: 2.26
|
9 |
|
10 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
11 |
|
@@ -172,6 +172,9 @@ A simple way to see any uncommon activity, for example an increased number of lo
|
|
172 |
|
173 |
## Changelog
|
174 |
|
|
|
|
|
|
|
175 |
= 2.26 (July 2018) =
|
176 |
- Add support for the [Jetpack plugin](https://wordpress.org/plugins/jetpack/). To begin with, activation and deactivation of Jetpack modules is logged.
|
177 |
- Add logging of translation updates, so now you can see when a plugin or a theme has gotten new translations. Fixes https://github.com/bonny/WordPress-Simple-History/issues/147.
|
5 |
Requires at least: 4.5.1
|
6 |
Tested up to: 4.9
|
7 |
Requires PHP: 5.3
|
8 |
+
Stable tag: 2.26.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 |
|
172 |
|
173 |
## Changelog
|
174 |
|
175 |
+
= 2.26.1 (July 2018) =
|
176 |
+
- Fix 5.3 compatibility.
|
177 |
+
|
178 |
= 2.26 (July 2018) =
|
179 |
- Add support for the [Jetpack plugin](https://wordpress.org/plugins/jetpack/). To begin with, activation and deactivation of Jetpack modules is logged.
|
180 |
- Add logging of translation updates, so now you can see when a plugin or a theme has gotten new translations. Fixes https://github.com/bonny/WordPress-Simple-History/issues/147.
|