RC6 appears to have changed the format of the attributes array which is causing the certificate not to be created and throwing an error about the e-mail address not being valid.
RC6 appears to have changed the format of the attributes array which is causing the certificate not to be created and throwing an error about the e-mail address not being valid.
Comments
Comment #1
jrust commentedFixed in CVS. Note that this breaks backward compatibility with old version of ubercart (i.e. ucbercart 2.0-rc6 or higher is required)
Comment #2
torgospizzaCrap. That's going to affect some other stuff I'm doing. Can you post a quick example?
Comment #3
jrust commentedYeah, basically the attributes array is one level deeper now. So, instead of
$data['attributes']["Recipient's Email Address"]It's now
$data['attributes']["Recipient's Email Address"][0]Comment #4
torgospizzaOh okay, that's not so bad. (Phew.) Thanks!