diff options
author | jaubourg <j@ubourg.net> | 2011-01-26 01:45:00 +0100 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-01-26 01:45:00 +0100 |
commit | d7d64713a72c67243b279b9dcb16ae9fbb825c17 (patch) | |
tree | e7d3808e35268ddb0402853a150cb28965fb097f | |
parent | 0e5b341cc0f3f9bf0f6659e09704f2267cfdfdba (diff) | |
download | jquery-d7d64713a72c67243b279b9dcb16ae9fbb825c17.tar.gz jquery-d7d64713a72c67243b279b9dcb16ae9fbb825c17.zip |
Fixes #5866. Issue number in previous commit was wrong both in comments and commit message. See https://github.com/jquery/jquery/commit/0e5b341cc0f3f9bf0f6659e09704f2267cfdfdba for previous commit.
-rw-r--r-- | src/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax.js b/src/ajax.js index a6ee676d4..caacb6059 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -542,7 +542,7 @@ jQuery.extend({ }; // Remove hash character (#7531: and string promotion) - // Add protocol if not provided (#5856: IE7 issue with protocol-less urls) + // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) // We also use the url parameter if available s.url = ( "" + ( url || s.url ) ).replace( rhash, "" ).replace( rprotocol, protocol + "//" ); |