also replace %20 in item id in url
This commit is contained in:
parent
c5a8d7a79e
commit
610720254d
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ Ox.URL = function(options) {
|
|||
parts.push(state.type);
|
||||
}
|
||||
if (state.item) {
|
||||
parts.push(state.item);
|
||||
parts.push(encodeValue(state.item));
|
||||
}
|
||||
if (state.type && self.options.views[state.type][
|
||||
state.item ? 'item' : 'list'
|
||||
|
|
Loading…
Reference in a new issue