I have project.module CVS running on my site to track user issues and requests against the site code. All issues submitted without anybody set in the "assigned" field aren't being displayed on the issue listings.

Also, users can only assign themselves while submitting an issue. The same happens on drupal.org. What's the point of this field?

Comments

Anonymous’s picture

I had the same problem.

I fixed it by adding a user to the {users} table with uid=0 and name='Anonymous'

Ewout

Dries’s picture

There should be a user with uid = 0. Try:
SELECT * FROM users WHERE uid = 0;
to see if there is such user.

Dries’s picture

Anonymous’s picture