- assigned_to: nobody --> fredck
It would be nice to change this line in browser.html
oConnector.ConnectorUrl = sConnUrl + '?';
with this:
if (sConnUrl.indexOf('?') != -1)
{
oConnector.ConnectorUrl = sConnUrl + '&';
}
else {
oConnector.ConnectorUrl = sConnUrl + '?';
}
because I can provide my FCKConfig.ImageBrowserURL
allready with ? add some parameters..
Exactly this thing I do in fckeditor tapestry component:
FCKConfig.ImageBrowserURL = FCKConfig.BasePath +
'filemanager/browser/default/browser.html?Type=Image&Connector=../../../../../app?service=FileBrowserService'
;
Best Regards
Tomas Jucius
Logged In: YES
user_id=572424
This patch has been included in the last version.
Log in to post a comment.