This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
Hi Joe
Below code in file friendlyurlsuggest.js:
///////////////////////////////////////////////////////////////////////////////////
UrlHelper.prototype.GetData = function(callback,urlHelper) { .. xmlhttp.open('GET', this.serviceUrl + '?pn=' + this.query, true);... }
Should be:
UrlHelper.prototype.GetData = function(callback,urlHelper) { .. xmlhttp.open('GET', this.serviceUrl + '?pn=' + encodeURIComponent(this.query), true);
... }
/////////////////////////////////////////////////////////////////////
If didn't add encodeURIComponent, Chinese word would be Unrecognizable Code when transtered to server.
e.g when I add a new page on PageSettings.aspx, if "Page Name" set to Chinese word, "Use url" will be Unrecognizable Code. But after add encodeURIComponent, it's ok.
I think other code like this should add encodeURIComponent too.
-- no ascii in url all need be encodeURIComponented.
Thanks!
I will make the same change here.
Joe