Open jrief opened 1 month ago
How to reproduce:
PageContentAdmin
get_fieldsets
This will raise a ValueError in cms_config.py:283 stating that list.remove(x): x not in list.
list.remove(x): x not in list
The problem could be easily fixed by checking if f_name is member of fields.
f_name
fields
Shall I create a pull request for this? I however don't know how to create a test for it.
@jrief Thank you for offering a PR!
How to reproduce:
PageContentAdmin
.get_fieldsets
, add some extra fields part of your page content extension model.This will raise a ValueError in cms_config.py:283 stating that
list.remove(x): x not in list
.The problem could be easily fixed by checking if
f_name
is member offields
.Shall I create a pull request for this? I however don't know how to create a test for it.