Skip to content

Commit

Permalink
Merge pull request prototypejs#77 from victor-homyakov/patch-26
Browse files Browse the repository at this point in the history
`toQueryPair()`: `value` is already defined
  • Loading branch information
savetheclocktower committed Nov 2, 2012
2 parents 291edcd + 6336c45 commit 3384ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prototype/lang/hash.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ var Hash = Class.create(Enumerable, (function() {
function toQueryPair(key, value) {
if (Object.isUndefined(value)) return key;

var value = String.interpret(value);
value = String.interpret(value);

// Normalize newlines as \r\n because the HTML spec says newlines should
// be encoded as CRLFs.
Expand Down

0 comments on commit 3384ee0

Please sign in to comment.