I suggest following correction in easylogin.module in function _easylogin_userdata($uid) :

Instead of

$fullurl = $base_url .  '/easylogin/' . $url;

replace with

$fullurl = $base_url . (strpos(request_uri(), '?q=') == FALSE ? '/' : '?q=') . 'easylogin/' . $url;

Thank you!

Comments

George2’s picture

ah nice. i'll get this committed during the weekend...
thanks