Ticket #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
Note: See
TracTickets for help on using
tickets.