diff options
author | Friendika <info@friendika.com> | 2010-11-23 20:56:20 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-23 20:56:20 -0800 |
commit | dd52aec243cd16f7ff05026b91f984788cafad56 (patch) | |
tree | 8823efcfb060082503baac004d7f4d0133e7c7c8 /include/auth.php | |
parent | f9f08b435589ea10dca2db6891ae885a66e831e4 (diff) | |
download | volse-hubzilla-dd52aec243cd16f7ff05026b91f984788cafad56.tar.gz volse-hubzilla-dd52aec243cd16f7ff05026b91f984788cafad56.tar.bz2 volse-hubzilla-dd52aec243cd16f7ff05026b91f984788cafad56.zip |
use optional openid photo for registration - if supplied
Diffstat (limited to 'include/auth.php')
-rw-r--r-- | include/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/auth.php b/include/auth.php index 05d5dfd6f..7f45c6d58 100644 --- a/include/auth.php +++ b/include/auth.php @@ -114,7 +114,7 @@ else { // new account $_SESSION['register'] = 1; $openid->required = array('namePerson/friendly', 'contact/email', 'namePerson'); - $openid->optional = array('namePerson/first','media/image/aspect11'); + $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default'); goaway($openid->authUrl()); // NOTREACHED } |