Version Description
(November 2014) =
- Fixed wrong number of arguments used in filter on RSS-feed
Download this release
Release Info
Developer | eskapism |
Plugin | Simple History |
Version | 2.0.2 |
Comparing to | |
See all releases |
Code changes from version 2.0.1 to 2.0.2
- SimpleHistory.php +1 -1
- dropins/SimpleHistoryRSSDropin.php +1 -1
- readme.txt +7 -3
SimpleHistory.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
class SimpleHistory {
|
7 |
|
8 |
const NAME = "Simple History";
|
9 |
-
const VERSION = "2.0.
|
10 |
|
11 |
/**
|
12 |
* Capability required to view the history log
|
6 |
class SimpleHistory {
|
7 |
|
8 |
const NAME = "Simple History";
|
9 |
+
const VERSION = "2.0.2";
|
10 |
|
11 |
/**
|
12 |
* Capability required to view the history log
|
dropins/SimpleHistoryRSSDropin.php
CHANGED
@@ -153,7 +153,7 @@ class SimpleHistoryRSSDropin {
|
|
153 |
|
154 |
// Override capability check: if you have a valid rss_secret_key you can read it all
|
155 |
$action_tag = "simple_history/loggers_user_can_read/can_read_single_logger";
|
156 |
-
add_action( $action_tag, array($this, "on_can_read_single_logger") );
|
157 |
|
158 |
// Modify header time output so it does not show relative date or time ago-format
|
159 |
// Because we don't know when a user reads the RSS feed, time ago format may be very inaccurate
|
153 |
|
154 |
// Override capability check: if you have a valid rss_secret_key you can read it all
|
155 |
$action_tag = "simple_history/loggers_user_can_read/can_read_single_logger";
|
156 |
+
add_action( $action_tag, array($this, "on_can_read_single_logger"), 10, 3 );
|
157 |
|
158 |
// Modify header time output so it does not show relative date or time ago-format
|
159 |
// Because we don't know when a user reads the RSS feed, time ago format may be very inaccurate
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://eskapism.se/sida/donate/
|
|
4 |
Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog, feed, activity, stream
|
5 |
Requires at least: 3.6.0
|
6 |
Tested up to: 4.0.1
|
7 |
-
Stable tag: 2.0.
|
8 |
|
9 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
10 |
|
@@ -104,11 +104,15 @@ initiated by a specific user.
|
|
104 |
|
105 |
== Changelog ==
|
106 |
|
107 |
-
= 2.0.
|
|
|
|
|
|
|
|
|
108 |
|
109 |
- Removed anonymous function in index file causing errors during install on older versions of PHP
|
110 |
|
111 |
-
= 2.0 (
|
112 |
|
113 |
Major update - Simple History is now better and nicer than ever before! :)
|
114 |
I've spend hundreds of hours making this update, so if you use it and like it please [donate to keep my spirit up](http://eskapism.se/sida/donate/) or [give it a nice review](https://wordpress.org/support/view/plugin-reviews/simple-history).
|
4 |
Tags: history, log, changes, changelog, audit, trail, pages, attachments, users, cms, dashboard, admin, syslog, feed, activity, stream
|
5 |
Requires at least: 3.6.0
|
6 |
Tested up to: 4.0.1
|
7 |
+
Stable tag: 2.0.2
|
8 |
|
9 |
View changes made by users within WordPress. See who created a page, uploaded an attachment or approved an comment, and more.
|
10 |
|
104 |
|
105 |
== Changelog ==
|
106 |
|
107 |
+
= 2.0.2 (November 2014) =
|
108 |
+
|
109 |
+
- Fixed wrong number of arguments used in filter on RSS-feed
|
110 |
+
|
111 |
+
= 2.0.1 (November 2014) =
|
112 |
|
113 |
- Removed anonymous function in index file causing errors during install on older versions of PHP
|
114 |
|
115 |
+
= 2.0 (November 2014) =
|
116 |
|
117 |
Major update - Simple History is now better and nicer than ever before! :)
|
118 |
I've spend hundreds of hours making this update, so if you use it and like it please [donate to keep my spirit up](http://eskapism.se/sida/donate/) or [give it a nice review](https://wordpress.org/support/view/plugin-reviews/simple-history).
|