Version Description
- Fix: Conflict with Elementor and WordPress Widgets
Download this release
Release Info
Developer | KingYes |
Plugin | Activity Log |
Version | 2.5.2 |
Comparing to | |
See all releases |
Code changes from version 2.5.1 to 2.5.2
- aryo-activity-log.php +1 -1
- hooks/class-aal-hook-widgets.php +4 -8
- readme.txt +5 -2
aryo-activity-log.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://activitylog.io/?utm_source=wp-plugins&utm_campaign=plugin-ur
|
|
5 |
Description: Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site. e.g. post was deleted, plugin was activated, user logged in or logged out - it's all these for you to see.
|
6 |
Author: Activity Log Team
|
7 |
Author URI: https://activitylog.io/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
|
8 |
-
Version: 2.5.
|
9 |
Text Domain: aryo-activity-log
|
10 |
License: GPLv2 or later
|
11 |
|
5 |
Description: Get aware of any activities that are taking place on your dashboard! Imagine it like a black-box for your WordPress site. e.g. post was deleted, plugin was activated, user logged in or logged out - it's all these for you to see.
|
6 |
Author: Activity Log Team
|
7 |
Author URI: https://activitylog.io/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
|
8 |
+
Version: 2.5.2
|
9 |
Text Domain: aryo-activity-log
|
10 |
License: GPLv2 or later
|
11 |
|
hooks/class-aal-hook-widgets.php
CHANGED
@@ -12,13 +12,9 @@ class AAL_Hook_Widgets extends AAL_Hook_Base {
|
|
12 |
'object_name' => $widget->id_base,
|
13 |
);
|
14 |
|
15 |
-
if (
|
16 |
-
|
17 |
-
|
18 |
-
/** @todo: find any way to widget deleted detected */
|
19 |
-
/*if ( isset( $_REQUEST['delete_widget'] ) && '1' === $_REQUEST['delete_widget'] ) {
|
20 |
-
$aal_args['action'] = 'deleted';
|
21 |
-
}*/
|
22 |
|
23 |
aal_insert_log( $aal_args );
|
24 |
|
@@ -48,4 +44,4 @@ class AAL_Hook_Widgets extends AAL_Hook_Base {
|
|
48 |
parent::__construct();
|
49 |
}
|
50 |
|
51 |
-
}
|
12 |
'object_name' => $widget->id_base,
|
13 |
);
|
14 |
|
15 |
+
if ( empty( $_REQUEST['sidebar'] ) ) {
|
16 |
+
return $instance;
|
17 |
+
}
|
|
|
|
|
|
|
|
|
18 |
|
19 |
aal_insert_log( $aal_args );
|
20 |
|
44 |
parent::__construct();
|
45 |
}
|
46 |
|
47 |
+
}
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: pojo.me, KingYes, ariel.k, maor
|
3 |
Tags: Activity Log, Security Log, User Activity, User Log, Activity, audit log, monitor, security, tracking, woocommerce, bbPress,
|
4 |
Requires at least: 4.4
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 2.5.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
The #1 Activity Log plugin helps you monitor & log all changes and activities on your site, so you can run a safer, more organized WordPress site.
|
@@ -112,6 +112,9 @@ Would you like to like to contribute to Activity Log? You are more than welcome
|
|
112 |
|
113 |
== Changelog ==
|
114 |
|
|
|
|
|
|
|
115 |
= 2.5.1 =
|
116 |
* Fix! - PHP < 5.4 compatibility ([Topic](https://wordpress.org/support/topic/crashed-site-now-wont-activate/))
|
117 |
|
2 |
Contributors: pojo.me, KingYes, ariel.k, maor
|
3 |
Tags: Activity Log, Security Log, User Activity, User Log, Activity, audit log, monitor, security, tracking, woocommerce, bbPress,
|
4 |
Requires at least: 4.4
|
5 |
+
Tested up to: 5.0
|
6 |
+
Stable tag: 2.5.2
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
The #1 Activity Log plugin helps you monitor & log all changes and activities on your site, so you can run a safer, more organized WordPress site.
|
112 |
|
113 |
== Changelog ==
|
114 |
|
115 |
+
= 2.5.2 =
|
116 |
+
* Fix: Conflict with Elementor and WordPress Widgets
|
117 |
+
|
118 |
= 2.5.1 =
|
119 |
* Fix! - PHP < 5.4 compatibility ([Topic](https://wordpress.org/support/topic/crashed-site-now-wont-activate/))
|
120 |
|