encode state.part in url, fixes #2725
This commit is contained in:
parent
e6178af146
commit
398e3f6749
1 changed files with 1 additions and 1 deletions
|
@ -536,7 +536,7 @@ Ox.URL = function(options) {
|
||||||
if (state.page) {
|
if (state.page) {
|
||||||
parts.push(state.page);
|
parts.push(state.page);
|
||||||
if (state.part) {
|
if (state.part) {
|
||||||
parts.push(state.part);
|
parts.push(encodeValue(state.part));
|
||||||
if (state.span) {
|
if (state.span) {
|
||||||
parts.push(encodeValue(state.span));
|
parts.push(encodeValue(state.span));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue