Hi, when I create new post and save it as "draft", warning appears:
Warning: strpos(): Empty needle in /srv/www/***/htdocs/wp-content/plugins/read-offline/inc/class-read-offline.php on line 160
Same thing happen when trying to Preview this draft post.
This can be repaired by adding additional condition to not create attachments on draft page.
Add this to line 140 in class-read-offline.php
if ( 'draft' == get_post_status ( $post_id )) return $post_id;
Hi, when I create new post and save it as "draft", warning appears:
Warning: strpos(): Empty needle in /srv/www/***/htdocs/wp-content/plugins/read-offline/inc/class-read-offline.php on line 160
Same thing happen when trying to Preview this draft post.
This can be repaired by adding additional condition to not create attachments on draft page. Add this to line 140 in class-read-offline.php
if ( 'draft' == get_post_status ( $post_id )) return $post_id;