Skip to content

Commit

Permalink
Hard code UrlJoiner because changes to postprocessing for MV_HTML_4_C…
Browse files Browse the repository at this point in the history
…OMPLIANT

stepped on the AutoVariable setting.
  • Loading branch information
Mike Heins committed Mar 4, 2011
1 parent b20a718 commit 8519337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/lib/UI/pages/admin/menu_editor.html
Expand Up @@ -798,7 +798,7 @@
parms = parms.replace(/=/g, "-_EQUAL_X_-");
parms = parms.replace(/\n/g, "-_NEWLINE_X_-");
parms = escape(parms);
parms = parms.replace(/-_NEWLINE_X_-/g, '@@UrlJoiner@@');
parms = parms.replace(/-_NEWLINE_X_-/g, '&');
parms = parms.replace(/-_EQUAL_X_-/g, '=');
// alert("parms=" + parms);
return parms;
Expand All @@ -807,7 +807,7 @@
function unescapeParams (parms) {
// alert("parms=" + parms);
parms = parms.replace(/=/g, "-_EQUAL_X_-");
parms = parms.replace(/@@UrlJoiner@@/g, "-_NEWLINE_X_-");
parms = parms.replace(/&/g, "-_NEWLINE_X_-");
parms = unescape(parms);
parms = parms.replace(/-_NEWLINE_X_-/g, "\n");
parms = parms.replace(/-_EQUAL_X_-/g, '=');
Expand Down

0 comments on commit 8519337

Please sign in to comment.