- Issue created by @web247
- 🇨🇦Canada smulvih2 Canada 🍁
@web247 I just tested this on a fresh install of 6.1.x, adding the same buttons (fontawesome, footnotes) to the full_html text format. I did get a JS validation issue, dealing with
image_upload.status
. This was coming fromeditor.editor.full_html.yml
:image_upload: status: false scheme: public directory: inline-images max_size: '' max_dimensions: width: 0 height: 0
Since the status is set to False, we don't actually need theother lines. By changing to this to the following I was then able to add the icons and save without error:
image_upload: { }
I also tested rich_text and was getting some JS validation issues as well, due to latest plugins. I had to remove
<cite>
and<div class>
fromfilter.format.rich_text.yml
since plugins already specify these elements. After these two changes to the text formats I was able to save without any issues.Not sure about your reported issue, that looks more like a PHP error than JS validation of the text format settings form. I was not able to reproduce this on a fresh install.
Closing this as can't reproduce. Please try pulling the latest changes and test again from a fresh install. If you experience this isue again feel free to re-open this issue.