Login to see comments


Notice: Undefined variable: params in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 63

Warning: array_merge(): Expected parameter 2 to be an array, null given in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 63

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 70

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 80

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 85

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 91

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 93

I have added code to limit comments to being seen only by members

in
posts.main.php, page.main.php and single.main.php

Example: in single.main (version $Id: single.main.php,v 1.7 2007/11/24 21:31:22 fplanque Exp $)

before
skin_include( '_item_feedback.inc.php', array

if(isset($current_User) and ($current_User->level)>1){
skin_include( '_item_feedback.inc.php', array

and put a banner informing users of this when not logged in
After <div id="content" class="column">

<?php
if(!isset($current_User) )
{
echo ('<div class="page_action">Only logged in users can see comments to posts')</div>');
}
?>