WP Security Audit Log - Version 0.6.1

Version Description

(2014-01-16) = * Bug Fix * Fixed errors in debug code (used for when debugging is enabled in plugin)

Download this release

Release Info

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

Code changes from version 0.6 to 0.6.1

inc/WPPHEvent.php CHANGED
@@ -1839,7 +1839,8 @@ class WPPHEventWatcher extends WPPHEvent
1839
  // 2025, 2026
1840
  static function watchPostVisibilityChange($oldStatus, $newStatus, $userID, $postTitle, $post, $event)
1841
  {
1842
- wpphLog(__METHOD__.'() triggered.', array('params'=>func_get_args()));
 
1843
 
1844
  global $wpdb;
1845
 
1839
  // 2025, 2026
1840
  static function watchPostVisibilityChange($oldStatus, $newStatus, $userID, $postTitle, $post, $event)
1841
  {
1842
+ $args = func_get_args();
1843
+ wpphLog(__METHOD__.'() triggered.', array('params'=>$args));
1844
 
1845
  global $wpdb;
1846
 
inc/WPPHPost.php CHANGED
@@ -53,7 +53,8 @@ class WPPHPost
53
  // 2019 & 2020 & 2038
54
  static function postAuthorChanged($newAuthorID, $postID, $userID, $postTitle, $event, $quickFormEnabled = false)
55
  {
56
- wpphLog(__METHOD__.'() triggered.',array('params'=> func_get_args()));
 
57
  if(empty($postID)){
58
  wpphLog('Error: $postID is empty. Invalid function call.');
59
  return false;
53
  // 2019 & 2020 & 2038
54
  static function postAuthorChanged($newAuthorID, $postID, $userID, $postTitle, $event, $quickFormEnabled = false)
55
  {
56
+ $args = func_get_args();
57
+ wpphLog(__METHOD__.'() triggered.',array('params'=> $args));
58
  if(empty($postID)){
59
  wpphLog('Error: $postID is empty. Invalid function call.');
60
  return false;
readme.txt CHANGED
@@ -5,7 +5,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
5
  Tags: wordpress security plugin, wordpress security audit log, audit 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, wordpress security monitor, analytics, activity, admin, multisite, wordpress multisite
6
  Requires at least: 3.0
7
  Tested up to: 3.8
8
- Stable tag: 0.6
9
 
10
  Identify WordPress issues before they become a security problem by keeping an audit log of users and all of the under the hood WordPress activity.
11
 
@@ -96,6 +96,10 @@ Yes, WP Security Audit Log works on WordPress Multisite networkds. For more info
96
 
97
  == Changelog ==
98
 
 
 
 
 
99
  = 0.6 (2014-01-15) =
100
  * New Plugin Feature
101
  * WordPress Multisite Support [Read More](http://www.wpwhitesecurity.com/wordpress-plugins/wp-security-audit-log-plugin-features-wordpress-multisite/)
5
  Tags: wordpress security plugin, wordpress security audit log, audit 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, wordpress security monitor, analytics, activity, admin, multisite, wordpress multisite
6
  Requires at least: 3.0
7
  Tested up to: 3.8
8
+ Stable tag: 0.6.1
9
 
10
  Identify WordPress issues before they become a security problem by keeping an audit log of users and all of the under the hood WordPress activity.
11
 
96
 
97
  == Changelog ==
98
 
99
+ = 0.6.1 (2014-01-16) =
100
+ * Bug Fix
101
+ * Fixed errors in debug code (used for when debugging is enabled in plugin)
102
+
103
  = 0.6 (2014-01-15) =
104
  * New Plugin Feature
105
  * WordPress Multisite Support [Read More](http://www.wpwhitesecurity.com/wordpress-plugins/wp-security-audit-log-plugin-features-wordpress-multisite/)
wp-security-audit-log.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Security Audit Log
4
  Plugin URI: http://www.wpwhitesecurity.com/wordpress-security-plugins/wp-security-audit-log/
5
  Description: Identify WordPress security issues before they become a problem and keep track of everything happening on your WordPress, including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log will generate a security alert for everything that happens on your WordPress blog or website. Use the Audit Log Viewer included in the plugin to see all the security alerts.
6
  Author: WP White Security
7
- Version: 0.6
8
  Author URI: http://www.wpwhitesecurity.com/
9
  License: GPL2
10
  Text Domain: wp-security-audit-log
@@ -26,7 +26,7 @@ Domain Path: /languages
26
  along with this program; if not, write to the Free Software
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
- define('WPPH_PLUGIN_VERSION','0.6');
30
  define('WPPH_PLUGIN_PREFIX', 'wpph_');
31
  define('WPPH_PLUGIN_NAME', 'WP Security Audit Log');
32
  define('WPPH_PLUGIN_URL', trailingslashit(plugins_url('', __FILE__)));
4
  Plugin URI: http://www.wpwhitesecurity.com/wordpress-security-plugins/wp-security-audit-log/
5
  Description: Identify WordPress security issues before they become a problem and keep track of everything happening on your WordPress, including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log will generate a security alert for everything that happens on your WordPress blog or website. Use the Audit Log Viewer included in the plugin to see all the security alerts.
6
  Author: WP White Security
7
+ Version: 0.6.1
8
  Author URI: http://www.wpwhitesecurity.com/
9
  License: GPL2
10
  Text Domain: wp-security-audit-log
26
  along with this program; if not, write to the Free Software
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
+ define('WPPH_PLUGIN_VERSION','0.6.1');
30
  define('WPPH_PLUGIN_PREFIX', 'wpph_');
31
  define('WPPH_PLUGIN_NAME', 'WP Security Audit Log');
32
  define('WPPH_PLUGIN_URL', trailingslashit(plugins_url('', __FILE__)));