handle escaped quotes in hash
This commit is contained in:
parent
64a1aa65eb
commit
739da2976a
1 changed files with 1 additions and 1 deletions
|
@ -728,7 +728,7 @@ Ox.URL = function(options) {
|
||||||
hash.anchor = decodeValue(split[0]);
|
hash.anchor = decodeValue(split[0]);
|
||||||
}
|
}
|
||||||
if (split[1]) {
|
if (split[1]) {
|
||||||
Ox.forEach(Ox.unserialize(split[1], true), function(value, key) {
|
Ox.forEach(Ox.unserialize(Ox.decodeURIComponent(split[1]), true), function(value, key) {
|
||||||
hash.query = hash.query || [];
|
hash.query = hash.query || [];
|
||||||
hash.query.push({
|
hash.query.push({
|
||||||
key: decodeValue(key),
|
key: decodeValue(key),
|
||||||
|
|
Loading…
Reference in a new issue