After signing in a second time with RPX, the message displayed is
'Welcome back,'
Perhaps line 167:
drupal_set_message( t('Welcome back, ' . $account->full_name));
should be
drupal_set_message( t('Welcome back, ' . $account->name));
After signing in a second time with RPX, the message displayed is
'Welcome back,'
Perhaps line 167:
drupal_set_message( t('Welcome back, ' . $account->full_name));
should be
drupal_set_message( t('Welcome back, ' . $account->name));
Comments
Comment #1
nrambeck commentedThanks. I actually removed the welcome message to conform to the Drupal's standard login which does not display a login welcome message. Changes committed to latest dev release.
Comment #2
nrambeck commentedMarking as fixed.