Skip to content

Commit a8b5f46

Browse files
author
Kaspars Dambis
authored
Merge pull request #1229 from xwp/release/3.6.2
Release 3.6.2 (hotfix)
2 parents 58e2e57 + cc7af61 commit a8b5f46

File tree

6 files changed

+30
-24
lines changed

6 files changed

+30
-24
lines changed

classes/class-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public function __construct( $plugin ) {
143143
add_filter( 'role_has_cap', array( $this, 'filter_role_caps' ), 10, 3 );
144144

145145
if ( is_multisite() && $plugin->is_network_activated() && ! is_network_admin() ) {
146-
$options = (array) get_site_option( 'wp_stream_network', $plugin->settings->get_defaults() );
146+
$options = (array) get_site_option( 'wp_stream_network', array() );
147147
$option = isset( $options['general_site_access'] ) ? absint( $options['general_site_access'] ) : 1;
148148

149149
$this->disable_access = ( $option ) ? false : true;

classes/class-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Plugin {
1818
*
1919
* @const string
2020
*/
21-
const VERSION = '3.6.1';
21+
const VERSION = '3.6.2';
2222

2323
/**
2424
* WP-CLI command

package-lock.json

Lines changed: 20 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
],
2727
"devDependencies": {
2828
"@wordpress/eslint-plugin": "^7.4.0",
29-
"eslint": "^7.18.0",
29+
"eslint": "^7.19.0",
3030
"grunt": "~1.3.0",
3131
"grunt-contrib-clean": "~2.0.0",
3232
"grunt-contrib-compress": "^2.0.0",

readme.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: xwp
33
Tags: wp stream, stream, activity, logs, track
44
Requires at least: 4.5
5-
Tested up to: 5.5
6-
Stable tag: 3.6.1
5+
Tested up to: 5.6
6+
Stable tag: 3.6.2
77
License: GPLv2 or later
88
License URI: https://www.gnu.org/licenses/gpl-2.0.html
99

@@ -91,6 +91,10 @@ Past Contributors: fjarrett, shadyvb, chacha, westonruter, johnregan3, jacobschw
9191

9292
== Changelog ==
9393

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+
9498
= 3.6.1 - January 12, 2020 =
9599

96100
* 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Stream
44
* Plugin URI: https://xwp.co/work/stream/
55
* 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
6+
* Version: 3.6.2
77
* Author: XWP
88
* Author URI: https://xwp.co
99
* License: GPLv2+

0 commit comments

Comments
 (0)