Remove "Login to post comments" from Drupal 6 sites
step1: copy bellow code, and post it to template.php
function phptemplate_links($links, $attributes = array()) {
global $user;
if (!$user->uid) {
unset($links['comment_forbidden']);
}
return theme_links($links, $attributes);
}
step2: clear drupal caches.
so you can do removed "Login or register to post comments" !