Opened 16 years ago

Closed 16 years ago

#1508 closed Bug (invalid)

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 (2)

comment:1 Changed 16 years ago by Alfonso Martínez de Lizarrondo

Component: GeneralFile Browser
Keywords: Pending added
Milestone: FCKeditor.Net 2.3

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

comment:2 Changed 16 years ago by Alfonso Martínez de Lizarrondo

Resolution: invalid
Status: newclosed

Expired

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy