Ox.URL: fix a bug when decoding multiple tabs in url
This commit is contained in:
parent
a0dc7500ca
commit
0c60ca25da
1 changed files with 1 additions and 1 deletions
|
@ -563,7 +563,7 @@ Ox.URL = function(options) {
|
|||
}
|
||||
|
||||
function decodeValue(value) {
|
||||
return Ox.decodeURIComponent(value).replace(/_/g, ' ').replace(Ox.char(9), '_');
|
||||
return Ox.decodeURIComponent(value).replace(/_/g, ' ').replace(/\t/g, '_');
|
||||
}
|
||||
|
||||
function encodeValue(value, isItem) {
|
||||
|
|
Loading…
Reference in a new issue