Version Description
(November 2014) =
- Show the version of PHP that the user is running, when the PHP requirement of >
Download this release
Release Info
| Developer | eskapism |
| Plugin | |
| Version | 2.0.3 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.2 to 2.0.3
- SimpleHistory.php +1 -1
- index.php +7 -2
- readme.txt +6 -2
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.3";
|
| 10 |
|
| 11 |
/**
|
| 12 |
* Capability required to view the history log
|
index.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Simple History
|
| 4 |
Plugin URI: http://simple-history.com
|
| 5 |
Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
|
| 6 |
-
Version: 2.0.
|
| 7 |
Author: Pär Thernström
|
| 8 |
Author URI: http://simple-history.com/
|
| 9 |
License: GPL2
|
|
@@ -51,7 +51,12 @@ if ( version_compare( phpversion(), "5.3", ">=") ) {
|
|
| 51 |
function simple_history_old_version_admin_notice() {
|
| 52 |
?>
|
| 53 |
<div class="updated error">
|
| 54 |
-
<p><?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
</div>
|
| 56 |
<?php
|
| 57 |
}
|
| 3 |
Plugin Name: Simple History
|
| 4 |
Plugin URI: http://simple-history.com
|
| 5 |
Description: Plugin that logs various things that occur in WordPress and then presents those events in a very nice GUI.
|
| 6 |
+
Version: 2.0.3
|
| 7 |
Author: Pär Thernström
|
| 8 |
Author URI: http://simple-history.com/
|
| 9 |
License: GPL2
|
| 51 |
function simple_history_old_version_admin_notice() {
|
| 52 |
?>
|
| 53 |
<div class="updated error">
|
| 54 |
+
<p><?php
|
| 55 |
+
printf(
|
| 56 |
+
__( 'Simple History is a great plugin, but to use it your server must have at least PHP 5.3 installed (you have version %s).', 'simple-history' ),
|
| 57 |
+
phpversion()
|
| 58 |
+
);
|
| 59 |
+
?></p>
|
| 60 |
</div>
|
| 61 |
<?php
|
| 62 |
}
|
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,9 +104,13 @@ initiated by a specific user.
|
|
| 104 |
|
| 105 |
== Changelog ==
|
| 106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
= 2.0.2 (November 2014) =
|
| 108 |
|
| 109 |
-
- Fixed wrong number of arguments used in filter
|
| 110 |
|
| 111 |
= 2.0.1 (November 2014) =
|
| 112 |
|
| 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.3
|
| 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.3 (November 2014) =
|
| 108 |
+
|
| 109 |
+
- Show the version of PHP that the user is running, when the PHP requirement of >= 5.3 is not met
|
| 110 |
+
|
| 111 |
= 2.0.2 (November 2014) =
|
| 112 |
|
| 113 |
+
- Fixed wrong number of arguments used in filter in RSS-feed
|
| 114 |
|
| 115 |
= 2.0.1 (November 2014) =
|
| 116 |
|
