XF 1.1 ErrorException: Undefined index: name

  • Thread starter Thread starter ragtek
  • Start date Start date
R

ragtek

Guest
Anybody else having dozen error log entries with
ErrorException: Undefined index: name - library/XenForo/ControllerPublic/Register.php:425

?

It's this line
PHP:
 $origName = $fbUser['name'];
I haven't spent much time with the facebook intergration,so don't know why the name isn't set....

i've fixed this now with
$origName = (isset($fbUser['name']) ? $fbUser['name']: '' );
but it's strange that nobody else is having this:D




Edit: Nevermind, with help of goggle i found http://xenforo.com/community/threads/errorexception-undefined-index-name.27581/ (strange that the xenforo search didn't return this result:( )
 
Do you have "search this forum only" ticked or something?
this could probably be the reason, but then brogans link should have worked fine, but it returned also only my thread

nevermind, now i know it's a bug which will be fixed in the next version:)
 
Top Bottom