Ticket #1508 (closed Bug: invalid)

Opened 2 years ago

Last modified 2 years ago

Browser.html - can't get parrameters from querystring in FireFox

Reported by: subelj Owned by:
Priority: Normal Milestone:
Component: File Browser Version: FCKeditor 2.4.3
Keywords: Pending Cc:

Description

Change function in browser.html

function GetUrlParam( paramName ) {

var oRegex = new RegExp( '[\?&]' + paramName + '=([&]+)', 'i' ) ; var oMatch = oRegex.exec( window.top.location.search.replace('&','&')) ;

if ( oMatch && oMatch.length > 1 ) {

return decodeURIComponent( oMatch[1] ) ; }

else

return ;

}

Change History

Changed 2 years ago by alfonsoml

  • keywords Pending added
  • component changed from General to File Browser
  • milestone FCKeditor.Net 2.3 deleted

Could you explain better the problem?

The location url isn't encoded so that & is shown as & that's only the way to write it in HTML source

Changed 2 years ago by alfonsoml

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

Expired

Note: See TracTickets for help on using tickets.