Bugfix and minor improvement
[BUG] Save fieldValue in same PID as field #547
FieldValues for registration fields got saved in PID 0 instead of the PID, where the field is currently located. This leads to an 500 error, when a backend user with limited access rights tries to access fieldValues for registration fields in the backend.
In order to fix data saved to PID 0, please update the PID like shown in the example SQL statement below (updates all PID values to 2 - please replace 2 with the PID of your registration fields)
UPDATE `tx_sfeventmgt_domain_model_registration_fieldvalue` SET `pid` = '2' WHERE `pid` = '0';
[TASK] Show flash message, when Backend User has no access to temp folder #548
When a backend editor has no read/write access to the temp-folder of the default storage, a flash message is shown and CSV export is disabled.
The flash message can be suppressed with the TypoScript setting module.tx_sfeventmgt.settings.csvExport.showFlashMessageForInsufficientAccessRights
