Closed (fixed)
Project:
960 Robots
Version:
6.x-2.0-beta3
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Jul 2009 at 00:53 UTC
Updated:
29 Apr 2010 at 21:47 UTC
I am using this theme and I noticed that it now says that all my registered users are not verified. Is it because of the theme? How can I verify all my users?
Comments
Comment #1
infines commentedI should note that my website is http://indietank.com
Comment #2
artwork commentedgot the same problem don't know what happen until I saw this post. So I look into the code and noticed that you have to enable profile module, but I saw you have already solve this issue :)
Comment #3
infines commentedI did. I had to delete "(not verified)" from the template.php
just "(not verified)" though and without the quotes.
Comment #4
infines commentedComment #5
avpadernoThis is actually a bug caused by the following code:
If profile.module is not installed, then the code executes the
else if ($object->name) {branch, which will print the "not verified" close to the user name.That is indeed wrong, as that string should be printed only if the user object has a property name, but not a valid user ID. I am not sure in which cases this could happen (maybe when a user has been delete from a Drupal site, but his posts are still present in the site), nor I am sure that could be the correct thing to do (if a user was authenticated on a Drupal site, why should he be not verified?).
Comment #6
add1sun commentedCommitted a fix that moved the profile module check to just around the object->name def. A new release will be out soon.
Comment #8
verta commentedAs a side note to the question, "(if a user was authenticated on a Drupal site, why should he be not verified?)" - if you are using an external authentication module like LDAP Integration http://drupal.org/project/ldap_integration
it's possible for user records to be created with no email address, (which seems to be the definition of "not verified" in the core?).
I added the Real Names module http://drupal.org/project/realname which worked as a workaround for some reason but I like this answer.
Comment #9
paskainos commentedSpeaking of http://drupal.org/project/realname and this issue, FYI: realname can actually cause this 'not verified' issue ('not verifed' behind verified usernames, displayed to users not logged in) if configured without proper understanding. At admin/user/realname the "Show "Not verified" for anonymous users" checkbox at the bottom may cause this issue if one doesn't realize how this option works. Also, when using realname, don't forget to set permissions. ;)