User tests: Successful: Unsuccessful:
Fixes regression in 5aa724a#diff-069d36e84093f570923bd7b0459eac93R257
You can explicitly stop new tags from being created in the tags form field, which is useful when for example you want people to only be able to select from existing tags in a module. However we have broken this functionality, by doing an explicit typecheck of a string
against a SimpleXMLElement
(which fails all the time allowing you to create tags all the time)
Find a type="tag"
field in the CMS and add modify it to have custom="deny"
in it's definition. For example:
<field
name="tags"
type="tag"
label="JTAG"
description="JTAG_DESC"
multiple="true"
custom="deny"
/>
You can't create tags in the field
You can before the patch. You cannot afterwards
N/A - fixes regression
Category | ⇒ | Libraries |
Status | New | ⇒ | Pending |
Status | Pending | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-09-22 10:16:43 |
Closed_By | ⇒ | wilsonge | |
Labels |
Added:
?
|
Closing as covered by #18061