Ticket #1581 (closed Bug: invalid)
IE7: responseText is null or is not an object (0 things found)
| Reported by: | B_aniaczek | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Project : MediaWiki+FCKeditor | Version: | |
| Keywords: | Pending | Cc: |
Description
Only MSIE7.0 (my version 7.0.5730.11 pl)
Select "Insert picture" or "Insert link" type something, which causes "no images found" or "no articles found" You will get an error: "responseText is null or is not an object".
To correct problem: In files image.html and link.html inside function LoadSearchResults( result ) replace line:
var results = result.responseText.Trim().split( '\n' ) ;
with
var results = ( result.responseText ? result.responseText.Trim().split( '\n' ) : '' );
Change History
Note: See
TracTickets for help on using
tickets.