Skip to content

Commit dcf600c

Browse files
committed
Fix bug in last merged pull commit - semicolon separated querystrings should now parse correctly.
1 parent 1179698 commit dcf600c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery.url.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jQuery.url = function()
2121

2222
q: {
2323
name: "queryKey",
24-
parser: /(?:^|&;)([^&=;]*)=?([^&;]*)/g
24+
parser: /(?:^|&|;)([^&=;]*)=?([^&;]*)/g
2525
},
2626

2727
parser: {

0 commit comments

Comments
 (0)