I am running Drupal 6.4.

I created a page to create a list of blogs on the site using the last set of code found at:
http://drupal.org/node/83615

Authenticated users are able to view the page and information properly but anonymous users only see the title but none of the content.

Any thoughts?

Comments

thomasmurphy’s picture

If it's something which authenticated users are allowed to do but anonymous users aren't it's probably a setting in access control

mrtoner’s picture

Yes, that code snippet is wrapped in

global $user;
if($user->uid)
{
...
}

which only shows that content if the user is logged in. Remove that wrapper to allow all users to see it, unless you restrict block visibility.

Underfunded’s picture

Thank you! Worked like a charm once I removed the wrapper.