WP Security Audit Log - Version 2.6.9.1

Version Description

(2017-10-24) =

  • Bug Fix
    • Fixed a syntax issue in the code that was affecting installs on PHP lower than 5.4
Download this release

Release Info

Developer WPWhiteSecurity
Plugin Icon 128x128 WP Security Audit Log
Version 2.6.9.1
Comparing to
See all releases

Code changes from version 2.6.9 to 2.6.9.1

classes/Sensors/Content.php CHANGED
@@ -998,8 +998,8 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
998
  }
999
  } elseif ( 'delete-tag' === $action
1000
  && 'post_tag' === $post_array['taxonomy']
1001
- && ! empty( $post_array['tag_ID']
1002
- && wp_verify_nonce( $post_array['_wpnonce'], 'delete-tag_' . $post_array['tag_ID'] ) ) ) {
1003
  // Single delete.
1004
  $tag_ids[] = $post_array['tag_ID'];
1005
  }
998
  }
999
  } elseif ( 'delete-tag' === $action
1000
  && 'post_tag' === $post_array['taxonomy']
1001
+ && ! empty( $post_array['tag_ID'] )
1002
+ && wp_verify_nonce( $post_array['_wpnonce'], 'delete-tag_' . $post_array['tag_ID'] ) ) {
1003
  // Single delete.
1004
  $tag_ids[] = $post_array['tag_ID'];
1005
  }
readme.txt CHANGED
@@ -6,8 +6,8 @@ License: GPLv3
6
  License URI: http://www.gnu.org/licenses/gpl.html
7
  Tags: wordpress security plugin, wordpress security audit log, audit log, wordpress log, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, security audit trail, wordpress security alerts, wordpress monitor, wordpress security monitor, wordpress admin, wordpress admin monitoring, analytics, activity, admin, multisite, wordpress multisite, actions, dashboard, log, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
8
  Requires at least: 3.6
9
- Tested up to: 4.8.2
10
- Stable tag: 2.6.9
11
 
12
  Keep an audit trail of all changes and under the hood WordPress activity to ensure productivity and thwart possible WordPress hacker attacks.
13
 
@@ -190,6 +190,11 @@ Please refer to the [FAQs page](https://www.wpsecurityauditlog.com/documentation
190
 
191
  == Changelog ==
192
 
 
 
 
 
 
193
  = 2.6.9 (2017-10-24) =
194
 
195
  * **New Audit Trail Alerts for logging of Tag changes**
6
  License URI: http://www.gnu.org/licenses/gpl.html
7
  Tags: wordpress security plugin, wordpress security audit log, audit log, wordpress log, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, security audit trail, wordpress security alerts, wordpress monitor, wordpress security monitor, wordpress admin, wordpress admin monitoring, analytics, activity, admin, multisite, wordpress multisite, actions, dashboard, log, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
8
  Requires at least: 3.6
9
+ Tested up to: 4.9
10
+ Stable tag: 2.6.9.1
11
 
12
  Keep an audit trail of all changes and under the hood WordPress activity to ensure productivity and thwart possible WordPress hacker attacks.
13
 
190
 
191
  == Changelog ==
192
 
193
+ = 2.6.9.1 (2017-10-24) =
194
+
195
+ * **Bug Fix**
196
+ * Fixed a syntax issue in the code that was affecting installs on PHP lower than 5.4
197
+
198
  = 2.6.9 (2017-10-24) =
199
 
200
  * **New Audit Trail Alerts for logging of Tag changes**
wp-security-audit-log.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Security Audit Log
4
  Plugin URI: http://www.wpsecurityauditlog.com/
5
  Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
6
  Author: WP White Security
7
- Version: 2.6.9
8
  Text Domain: wp-security-audit-log
9
  Author URI: http://www.wpsecurityauditlog.com/
10
  License: GPL2
@@ -36,7 +36,7 @@ class WpSecurityAuditLog {
36
  *
37
  * @var string
38
  */
39
- public $version = '2.6.9';
40
 
41
  // Plugin constants.
42
  const PLG_CLS_PRFX = 'WSAL_';
4
  Plugin URI: http://www.wpsecurityauditlog.com/
5
  Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
6
  Author: WP White Security
7
+ Version: 2.6.9.1
8
  Text Domain: wp-security-audit-log
9
  Author URI: http://www.wpsecurityauditlog.com/
10
  License: GPL2
36
  *
37
  * @var string
38
  */
39
+ public $version = '2.6.9.1';
40
 
41
  // Plugin constants.
42
  const PLG_CLS_PRFX = 'WSAL_';