Glitch with openContent call javascript call in BaseContentTree.cs line 185 or so...
Umbraco 4.5
BaseContentTree.cs
the SetActionAttribute method is running HTMLEscape on the dd.Text value [page title in this case], in short the Replace function fails to escape single quotes on the Title in question, leading to javascript errors on selection.
[error occurs when selecting a page from the Tree for use as a link in the tinymce RTE.
To recreate: create a content node with a title of "Can't Select this", then in the content editor try to add a hyperlink to that location]
the short fix is to move the HTMLEncode call to the end of the assignment - I've rewritten it according to my style in the version I'm working on...
Glitch with openContent call javascript call in BaseContentTree.cs line 185 or so...
Umbraco 4.5
BaseContentTree.cs
the SetActionAttribute method is running HTMLEscape on the dd.Text value [page title in this case], in short the Replace function fails to escape single quotes on the Title in question, leading to javascript errors on selection.
[error occurs when selecting a page from the Tree for use as a link in the tinymce RTE.
To recreate: create a content node with a title of "Can't Select this", then in the content editor try to add a hyperlink to that location]
the short fix is to move the HTMLEncode call to the end of the assignment - I've rewritten it according to my style in the version I'm working on...
but the simple fix is just this block:
is working on a reply...