You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** @internal */
function _p2p_get_other_id( $item ) {
if ( $item->ID == $item->p2p_from )
return $item->p2p_to;
if ( $item->ID == $item->p2p_to )
return $item->p2p_from;
trigger_error( "Corrupted data for item $inner_item->ID", E_USER_WARNING );
}
And resulting in:
PHP Notice: Undefined variable: inner_item in /var/www/html/wp-content/plugins/posts-to-posts/vendor/scribu/lib-posts-to-posts/util.php on line 123
PHP Notice: Trying to get property 'ID' of non-object in /var/www/html/wp-content/plugins/posts-to-posts/vendor/scribu/lib-posts-to-posts/util.php on line 123
PHP Warning: Corrupted data for item in /var/www/html/wp-content/plugins/posts-to-posts/vendor/scribu/lib-posts-to-posts/util.php on line 123
The text was updated successfully, but these errors were encountered:
Plugin version is 1.7.2
Trying to show connected users in an admin column for a post type is not succeeded because the object don't have what is required by function:
/wp-content/plugins/posts-to-posts/vendor/scribu/lib-posts-to-posts/util.php:123
And resulting in:
The text was updated successfully, but these errors were encountered: