Ticket #1103 (closed defect: fixed)
reversed logic in httpReq's allowCache argument
| Reported by: | FND | Owned by: | FND |
|---|---|---|---|
| Priority: | critical | Milestone: | 2.5.3 |
| Component: | core | Version: | 2.5.02 |
| Severity: | critical | Keywords: | |
| Cc: |
Description
httpReq appends a random parameter to the URL when the allowCache is true and omits that parameter otherwise - exactly the opposite of how it's intended.
Test case:
var allowCache = true;
var callback = function(foo, bar, baz) {
console.log(arguments);
}
var req = httpReq("GET", "http://google.com", callback, null,
null, null, null, null, null, allowCache);
Note that this might be the reason for recent importing issues.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

