We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My apache log constantly shows this php error message. Not sure it is mdx theme related. Thanks.
The text was updated successfully, but these errors were encountered:
Possible fix. Replace functions.php line 346, if($comment->comment_parent > 0) { with if(isset($comment->comment_parent) && $comment->comment_parent > 0) { Haven’t tested yet.
if($comment->comment_parent > 0) {
if(isset($comment->comment_parent) && $comment->comment_parent > 0) {
Sorry, something went wrong.
Fix read property "comment_parent" on null
13051ad
issue yrccondor#272
No branches or pull requests
My apache log constantly shows this php error message. Not sure it is mdx theme related. Thanks.
The text was updated successfully, but these errors were encountered: