https://bugzilla.wikimedia.org/show_bug.cgi?id=21810

--- Comment #18 from Craig Box <craig....@gmail.com> 2010-02-12 21:31:47 UTC ---
Previously, the name would have been taken from the 'fullname' attribute in
SREG.

Now, AX is checked also:

                if ( array_key_exists( 'fullname', $sreg ) )
                        $fullname = $sreg['fullname'];

                if ( array_key_exists( 'http://axschema.org/namePerson/first',
$ax ) || array_key_exists( 'http://axschema.org/namePerson/last', $ax ) )
                        $fullname =
$ax['http://axschema.org/namePerson/first'][0] . " " .
$ax['http://axschema.org/namePerson/last'][0];

                if ( $fullname && $this->userNameOK( $fullname ) ) {
                        // offer the name

You therefore have to have either piece of the full name included, and the
resulting concatenated string needs to be a valid username, for it to be
offered to you.

If you don't have a valid real name set on your Google account, then you will
not be offered the choice to use it.

Does this help?

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to