Opened 7 years ago
Last modified 5 years ago
#39361 new defect (bug)
Object not properly tested against in wp-includes/post-template.php
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | 4.7 |
Component: | General | Keywords: | reporter-feedback |
Focuses: | performance | Cc: |
Description
PHP Notice: Trying to get property of non-object in /home/coffeet9/public_html/wp-includes/post-template.php on line 298
line 298:
if ( false !== strpos( $post->post_content, '<!--noteaser-->' ) && ( ! $multipage || $page == 1 ) ) $strip_teaser = true;
Requires if(isset($post->post_content)) so that null variables aren't tested against
Note: See
TracTickets for help on using
tickets.
Thanks for the report, @fourstringfail.
Can you tell us in what situation the
post_content
property would not be set here?