diff --git a/blog.php b/blog.php index cc6e08a..311503a 100644 --- a/blog.php +++ b/blog.php @@ -228,10 +228,13 @@ echo '
'; // Header is rendered in renderPost() require $postUrl; // This will render the body - //if ($blogentry->isPublic) { // Render the blog footer + if ($blogentry->isVisible) { // Render the blog footer //echo "

Written by $blogentry->author

"; renderFooter(); - //} + } else { + echo("

Private Post

"); + echo("

This post has not yet been made public by the publisher. Please check back again later. Thank you.

"); + } echo '
'; } else {