PHP Warnings
-
In file
php/class-minute-control.phpmethodget_inline_container()causesPHP Warning: Attempt to read property "ID" on nullwhen$postis null.I’d suggest changing:
$data_url = 'sharethis_excerpt' === $type && '' !== $post ? esc_attr( 'data-url=' . get_permalink( $post->ID ) ) : '';
to:$data_url = 'sharethis_excerpt' === $type && !empty($post) ? esc_attr( 'data-url=' . get_permalink( $post->ID ) ) : '';Above change eliminates warnings.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘PHP Warnings’ is closed to new replies.