sunnysideup / silverstripe-downloadtoemail

Download to e-mail module where a user can receive a download in exchange for having the link sent to their e-mail (nice way to collect e-mails for marketing purposes).
Other
1 stars 2 forks source link

GridField is null #1

Open leepoooo opened 9 years ago

leepoooo commented 9 years ago

After mail sended , the EmailDownloadPageID not updated in tabel EmailDownloadPage_Registration, So need to add line as followed in file EmailDownloadPage ...... if(!$obj) { $obj = new EmailDownloadPage_Registration(); $obj->Email = $email; $obj->DownloadFileID = $this->DownloadFileID; $obj->EmailDownloadPageID = $this->ID; //add zmb

...... Otherwise ,the gridfield will be empty in the CMS BACKYARD.

sunnysideup commented 9 years ago

Hey @leepoooo ,

I just fixed that a few hours ago.... It will be on git soon!

Nicolaas

sunnysideup commented 9 years ago

Thanks a million for reporting!!!