fixed some javascript bugs

This commit is contained in:
JT Smith 2005-05-23 19:32:07 +00:00
parent fd57cbaa51
commit 55d73e193a
4 changed files with 32 additions and 27 deletions

View file

@ -11,6 +11,7 @@ function tinyMCE_WebGUI_URLConvertor(url, node, on_save) {
url = url.replace(new RegExp("%3B", "g"), ";");
url = url.replace(new RegExp("%28", "g"), "(");
url = url.replace(new RegExp("%29", "g"), ")");
url = url.replace(/^\/\^/,"^");
return url;
}