WP Security Audit Log - Version 2.5.6

Version Description

(2016-09-27) =

  • Bug Fix
    • Fixed an issue where previous 404 reports were not being correctly merged. Support Ticket
Download this release

Release Info

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

Code changes from version 2.5.5 to 2.5.6

classes/Models/Meta.php CHANGED
@@ -24,11 +24,17 @@ class WSAL_Models_Meta extends WSAL_Models_ActiveRecord {
24
  public function UpdateByNameAndOccurenceId($name, $value, $occurrenceId)
25
  {
26
  $meta = $this->getAdapter()->LoadByNameAndOccurenceId($name, $occurrenceId);
27
- $this->id = $meta['id'];
28
- $this->occurrence_id = $meta['occurrence_id'];
29
- $this->name = $meta['name'];
30
- $this->value = $value;
31
- $this->saveMeta();
 
 
 
 
 
 
 
32
  }
33
-
34
  }
24
  public function UpdateByNameAndOccurenceId($name, $value, $occurrenceId)
25
  {
26
  $meta = $this->getAdapter()->LoadByNameAndOccurenceId($name, $occurrenceId);
27
+ if (!empty($meta)) {
28
+ $this->id = $meta['id'];
29
+ $this->occurrence_id = $meta['occurrence_id'];
30
+ $this->name = $meta['name'];
31
+ $this->value = $value;
32
+ $this->saveMeta();
33
+ } else {
34
+ $this->occurrence_id = $occurrenceId;
35
+ $this->name = $name;
36
+ $this->value = $value;
37
+ $this->SaveMeta();
38
+ }
39
  }
 
40
  }
readme.txt CHANGED
@@ -7,7 +7,7 @@ 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.6.1
10
- Stable tag: 2.5.5
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
 
@@ -180,6 +180,11 @@ Please refer to the [FAQs page](https://www.wpsecurityauditlog.com/documentation
180
 
181
  == Changelog ==
182
 
 
 
 
 
 
183
  = 2.5.5 (2016-09-27) =
184
 
185
  * **New WordPress Audit Trail Alerts**
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.6.1
10
+ Stable tag: 2.5.6
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
 
180
 
181
  == Changelog ==
182
 
183
+ = 2.5.6 (2016-09-27) =
184
+
185
+ * **Bug Fix**
186
+ * Fixed an issue where previous 404 reports were not being correctly merged. [Support Ticket](https://wordpress.org/support/topic/database-error-with-version-2-5-5-column-occurrence_id-cannot-be-null/)
187
+
188
  = 2.5.5 (2016-09-27) =
189
 
190
  * **New WordPress Audit Trail Alerts**
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.5.5
8
  Text Domain: wp-security-audit-log
9
  Author URI: http://www.wpsecurityauditlog.com/
10
  License: GPL2
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.5.6
8
  Text Domain: wp-security-audit-log
9
  Author URI: http://www.wpsecurityauditlog.com/
10
  License: GPL2