custom registration getToken() returns null value
Hi,
I've just added some fields to the standard registration form and modified the Membership.properties and iwtAuthMembership.xml file accordingly. I've deleted the old component and imported the newly created one. In my Membership.java i did the following :
String phAttribute = getToken("passwordHint");
if (phAttribute == null)
{
setNextScreen(11);
return;
}
String passwordhint = getToken(phAttribute);
An exception was thrown on the first line, which says phAttribute is null.
What causes this and how can i solve it?

