Ticket #7702: double-encode-problem.patch
| File double-encode-problem.patch, 486 bytes (added by naph, 2 years ago) |
|---|
-
prototype.js
old new 647 647 key = encodeURIComponent(pair.key); 648 648 values.each(function(value) { 649 649 value = value != undefined ? encodeURIComponent(value) : ''; 650 parts.push(key + '=' + encodeURIComponent(value));650 parts.push(key + '=' + value); 651 651 }); 652 652 return; 653 653 }