Skip to content
Snippets Groups Projects
Commit 1bde6813 authored by Klaas Eikelboom's avatar Klaas Eikelboom
Browse files

Fix for Field filter. It did not work on a custom field that has the type country.

parent f5cabf49
No related branches found
Tags 1.23.4
1 merge request!59Fix for Field filter. It did not work on a custom field that has the type country.
# Version 1.17 (not yet released)
* Fix for Field filter. It did not work on a custom field that has the type country.
# Version 1.16
* Fixed blank worldregion in CVS output #52
......
......@@ -51,6 +51,9 @@ class CustomFieldSpecification extends FieldSpecification {
if ($this->type == 'Boolean') {
return false;
}
if ($this->type == 'Country') {
return false;
}
if ($this->customField['html_type'] == 'Radio' && empty($this->customField['serialize'])) {
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment