--- imagebrowser.js 2009-07-19 13:09:55.000000000 +0200 +++ imagebrowser_fix.js 2009-08-21 12:54:32.000000000 +0200 @@ -116,4 +116,14 @@ Drupal.behaviors.imagebrowser = function }, 2000); } }); -} \ No newline at end of file +} + +/* Set correct action for the exposed forms. */ +$(document).ready(function() { + $('form').each(function() { + if(this.id.match(/^views-exposed/i)) { + $('#'+this.id).attr('action',Drupal.settings.basePath + 'imagebrowser/ib_fckeditor'); + } + }); +}); +