fix bug which doesn't allow all macros to be processed

This commit is contained in:
Frank Dillon 2006-06-30 19:59:44 +00:00
parent eb3d07f355
commit 785645b2b6

View file

@ -2,7 +2,7 @@
function tinyMCE_WebGUI_URLConvertor(url, node, on_save) {
// The next line would have tried formatting the URL, but we don't want it to
url = tinyMCE.convertURL(url, node, on_save);
//url = tinyMCE.convertURL(url, node, on_save);
// Do custom WebUI convertion, replace back ^();
url = url.replace(new RegExp("%5E", "g"), "^");
url = url.replace(new RegExp("%3B", "g"), ";");