Bug Tracker

Ticket #2865 (closed bug: fixed)

Opened 4 months ago

Last modified 3 months ago

Opera 9.5 (at least this version) doesn't like null username being sent into XMLHttpRequest, this creates a login prompt in Opera, so jQuery should circumvent this

Reported by: kai@… Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.2.4 Component: ajax
Version: 1.2.3 Keywords: opera xml.open xmlhttprequest
Cc: icaaaq@gmail.com Needs: Test Case

Description

By doing like this

if(s.username == null) { xml.open(s.type,s.url,s.async/*,s.username,s.password*/); } else { xml.open(s.type,s.url,s.async,s.username,s.password); }

The bug happens when you run getJSON or getScript with Opera 9.5, on a non password protected machine. In the IIS log I see the username "undefined" appear.

Attachments

Change History

Changed 4 months ago by flesler

  • status changed from new to closed
  • resolution set to fixed

Fixed at [5604].

Changed 3 months ago by kai@…

actually this seems fixed in 1.2.4 according to the release notes, but I checked, and this fix is NOT included in 1.2.4.

Note: See TracTickets for help on using tickets.