Opened 17 years ago
Closed 17 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 17 years ago by
Component: | General → File 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