Hi there,
This is a bbPress bug caused because they didn’t handle the idea of meta capabilities being used which is why so many plugins are getting support tickets for it.
Let’s take a look at the first one for example:
> Notice: Undefined offset: 0 in ./wp-content/plugins/bbpress/includes/topics/capabilities.php on line 80
So here’s the code for that:
function bbp_map_reply_meta_caps( $caps = array(), $cap = '', $user_id = 0, $args = array() ) {
// What capability is being checked?
switch ( $cap ) {
/** Reading ***********************************************************/
case 'read_reply' :
// User cannot spectate
if ( ! user_can( $user_id, 'spectate' ) ) {
$caps = array( 'do_not_allow' );
// Do some post ID based logic
} else {
// Get the post
$_post = get_post( $args[0] );
if ( !empty( $_post ) ) {
So what happens here is since another plugin, in this case MonsterInsights, but many plugins also use them, are registering a meta capability, this capability will need to be resolved.
When that happens, the map_meta_filter is called here: https://core.trac.www.ads-software.com/browser/tags/4.9/src/wp-includes/capabilities.php#L572
Now, notice the $args param on that. Since MonsterInsights is a custom meta meta_cap, what will happen is $args would be populated here: https://core.trac.www.ads-software.com/browser/tags/4.9/src/wp-includes/capabilities.php#L554.
However, notice how this is surrounded by a check for custom post types. In order for $args to be populated, since $args is for passing in custom post type meta meta_cap assignments, it will be empty since the MonsterInsights screen is not a custom post type.
Therefore in bbPress on the lines I had above, $args is going to be empty, and since they don’t handle not being on a post, the $args[0] is going to be undefined and throw the notice you mentioned.
What they need to do is put a check that says
if ( empty( $args[0] ) ) {
return $caps;
}
or something like that above the use of $_post = get_post( $args[0] ); so that it circumvents the check. They also need the same fix in the other file as well.
I’ll see if I can submit that to them to see if they can ship that.