Stream - Version 3.6.2

Version Description

  • January 12, 2020 =

  • Fix: revert #1159 which caused a PHP error in the previous release.

Download this release

Release Info

Developer kasparsd
Plugin Icon 128x128 Stream
Version 3.6.2
Comparing to
See all releases

Code changes from version 3.6.1 to 3.6.2

classes/class-admin.php CHANGED
@@ -143,7 +143,7 @@ class Admin {
143
  add_filter( 'role_has_cap', array( $this, 'filter_role_caps' ), 10, 3 );
144
 
145
  if ( is_multisite() && $plugin->is_network_activated() && ! is_network_admin() ) {
146
- $options = (array) get_site_option( 'wp_stream_network', $plugin->settings->get_defaults() );
147
  $option = isset( $options['general_site_access'] ) ? absint( $options['general_site_access'] ) : 1;
148
 
149
  $this->disable_access = ( $option ) ? false : true;
143
  add_filter( 'role_has_cap', array( $this, 'filter_role_caps' ), 10, 3 );
144
 
145
  if ( is_multisite() && $plugin->is_network_activated() && ! is_network_admin() ) {
146
+ $options = (array) get_site_option( 'wp_stream_network', array() );
147
  $option = isset( $options['general_site_access'] ) ? absint( $options['general_site_access'] ) : 1;
148
 
149
  $this->disable_access = ( $option ) ? false : true;
classes/class-plugin.php CHANGED
@@ -18,7 +18,7 @@ class Plugin {
18
  *
19
  * @const string
20
  */
21
- const VERSION = '3.6.1';
22
 
23
  /**
24
  * WP-CLI command
18
  *
19
  * @const string
20
  */
21
+ const VERSION = '3.6.2';
22
 
23
  /**
24
  * WP-CLI command
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: xwp
3
  Tags: wp stream, stream, activity, logs, track
4
  Requires at least: 4.5
5
- Tested up to: 5.5
6
- Stable tag: 3.6.1
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -91,6 +91,10 @@ Past Contributors: fjarrett, shadyvb, chacha, westonruter, johnregan3, jacobschw
91
 
92
  == Changelog ==
93
 
 
 
 
 
94
  = 3.6.1 - January 12, 2020 =
95
 
96
  * New: Action add for when a blog is deleted [#1177](https://github.com/xwp/stream/pull/1177), props [@kidunot89](https://github.com/kidunot89)
2
  Contributors: xwp
3
  Tags: wp stream, stream, activity, logs, track
4
  Requires at least: 4.5
5
+ Tested up to: 5.6
6
+ Stable tag: 3.6.2
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
91
 
92
  == Changelog ==
93
 
94
+ = 3.6.2 - January 12, 2020 =
95
+
96
+ * Fix: revert [#1159](https://github.com/xwp/stream/pull/1159) which caused a PHP error in the previous release.
97
+
98
  = 3.6.1 - January 12, 2020 =
99
 
100
  * New: Action add for when a blog is deleted [#1177](https://github.com/xwp/stream/pull/1177), props [@kidunot89](https://github.com/kidunot89)
stream.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Stream
4
  * Plugin URI: https://xwp.co/work/stream/
5
  * Description: Stream tracks logged-in user activity so you can monitor every change made on your WordPress site in beautifully organized detail. All activity is organized by context, action and IP address for easy filtering. Developers can extend Stream with custom connectors to log any kind of action.
6
- * Version: 3.6.1
7
  * Author: XWP
8
  * Author URI: https://xwp.co
9
  * License: GPLv2+
3
  * Plugin Name: Stream
4
  * Plugin URI: https://xwp.co/work/stream/
5
  * Description: Stream tracks logged-in user activity so you can monitor every change made on your WordPress site in beautifully organized detail. All activity is organized by context, action and IP address for easy filtering. Developers can extend Stream with custom connectors to log any kind of action.
6
+ * Version: 3.6.2
7
  * Author: XWP
8
  * Author URI: https://xwp.co
9
  * License: GPLv2+