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

前端 未结 1 1367
被撕碎了的回忆
被撕碎了的回忆 2021-01-19 12:41

this has been driving me crazy for a few hours, I managed to fix it on my local development machine and of course when I put it to live it\'s not working.

Here is wh

1条回答
  •  囚心锁ツ
    2021-01-19 13:14

    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.

    0 讨论(0)
提交回复
热议问题