Umbraco TinyMCE - not showing absolute URLs in Insert/Update link

泄露秘密 提交于 2019-12-01 21:05:42

Unfortunately, you could not override "remove_script_host" because it is hardcoded in umbraco.editorControls.tinyMCE3.TinyMCE :

Line 250: config.Add("remove_script_host", "true");.

And when you add new value to config file - you will get "true,false" instead of "false", because of NameValueCollection used.

And as we know, when you add 2 items with same key to NameValueCollection, as result you will have concatenation of that two values, with comma separator.

So don't waste your time on finding out what's wrong with your "remove_script_host" configuration.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!