The icon link path is not good when the feed has a "%" in the path.
views_bonus_plugin_style_export must be updated at line 28 :
$this->view->feed_icon .= l($image, $path, $url_options);
replace by
$this->view->feed_icon .= l($image, $this->view->get_url(NULL, $path), $url_options);
Comments
Comment #1
neclimdulthanks committed