Forum Replies Created
-
In reply to: 500: post_status no array
just made an update to the latest 2.5.14 version, problem seems to be solved, thanks again 😉
In reply to: 500: post_status no arraythe 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_statito an array through the second parameter of the get method call won’t help here as$post_statiis an empty string.In reply to: 500: post_status no arrayln 1851 looks like this:
$meta_query = $posts_query->get( 'meta_query', array() );In reply to: 500: post_status no arrayi 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
In reply to: 500: post_status no arraysorry 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…
In reply to: 500: post_status no arrayThanks for the hotfix, as long as it’s fixed with the next update I’m fine 😉
ah i see, thanks for the note 😉