just made an update to the latest 2.5.14 version, problem seems to be solved, thanks again 😉
the error is still the same and it’s on line 1800. Fixing something on ln 1850 won’t do the trick here I guess, so you’d need to change as initially written ln 1796 from
$post_stati = $posts_query->get( 'post_status' );
to
$post_stati = $posts_query->get( 'post_status' );
if (!is_array($post_stati)){
$post_stati = array($post_stati);
}
Setting $post_stati
to an array through the second parameter of the get method call won’t help here as $post_stati
is an empty string.
ln 1851 looks like this:
$meta_query = $posts_query->get( 'meta_query', array() );
i don’t know, just clicked update in my wordpress installation… https://wordpress.org/plugins/bbpress/ shows 2.5.13 too btw, last updated 13 hours ago
sorry to come back on this, just did an update to 2.5.13, error persists, fatal error came back due to my local hotfix being kicked out…
Thanks for the hotfix, as long as it’s fixed with the next update I’m fine 😉
ah i see, thanks for the note 😉