Getting this error:

Notice: Undefined index: account в функции ulogin_form_user_profile_form_alter() (строка 182 в файле ~sites/all/modules/ulogin/ulogin.module).

Fixed by changing line 182 from this
if ($form['account']['name']['#access'] && variable_get('ulogin_disable_username_change', 1)) {
to this
if (isset($form['account']['name']['#access']) && variable_get('ulogin_disable_username_change', 1)) {

Comments

duozersk’s picture

Title: Getting error in ulogin_form_user_profile_form_alter() » Getting notice in ulogin_form_user_profile_form_alter()
Assigned: Unassigned » duozersk
Status: Active » Fixed

lanzs,

Thanks for a bug report, fixed in http://drupalcode.org/project/ulogin.git/commit/ce2b26f

Thanks again.
AndyB

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.