Hey guys,
I wrote some PHP that hooks into gform_post_submission and is used to register the newly created user on my Piwik installation (it's an analytics engine). To do this I'm using the Piwik API. I've verified everything works fine as a standalone service, but when I hook it into gform_post_submission I get an error from the Piwik API that says "no value specified for password." (as a result the user is not created in Piwik.)
I read in another post that the password is deleted as soon as the user is created, but I'd like to have it stick around long enough that I can use it elsewhere.
Help?
Edit: My sign up page is here: http://cola.sc/sign-up/
I've temporarily 'fixed' this issue by assigning the password to be the same as the user's email address. If I can't use their password, I'll just remove that field altogether and change the email that goes out.