fixed [ 1305577 ] 6.7.5 Cannot insert a Link to a Page in the WebGUI page tree

This commit is contained in:
JT Smith 2005-10-12 21:56:11 +00:00
parent 421585937f
commit 38042f495a
2 changed files with 3 additions and 0 deletions

View file

@ -10,6 +10,7 @@ function tinyMCE_WebGUI_URLConvertor(url, node, on_save) {
url = url.replace(new RegExp("%29", "g"), ")");
url = url.replace(/^\/\^/,"^");
url = url.replace(/http:\/\/\//,"/");
url = url.replace(/^.*(\^\/\;.*)$/,"$1");
return url;
}