We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export function was crashing.
Debugged and found that it does not support 'Categories' field type.
Patched my local version by adding a case statement:
diff --git a/plugins/amforms/services/AmForms_ExportsService.php b/plugins/amforms/services/AmForms_ExportsService.php index 5c85b983..72b545d7 100755 --- a/plugins/amforms/services/AmForms_ExportsService.php +++ b/plugins/amforms/services/AmForms_ExportsService.php @@ -736,6 +736,7 @@ class AmForms_ExportsService extends BaseApplicationComponent } $data[] = implode(', ', $fieldExportData); break; + case 'Categories': case 'Entries': $fieldExportData = array(); foreach ($submission->$fieldHandle->find() as $fieldData) {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Export function was crashing.
Debugged and found that it does not support 'Categories' field type.
Patched my local version by adding a case statement:
The text was updated successfully, but these errors were encountered: