With Clean URL disabled, when you check "Display small icon as link to Flash Movie object in a single page" in flash filter settings, the URL of the small icon is not valid.

http://myserver.com/flash_file/lettres_rebondissantes_3D.swf should be http://myserver.com?q=flash_file/lettres_rebondissantes_3D.swf

Comments

pitpit’s picture

here is the fix (sorry I don't have time to do a patch)

in function theme_flash_filter_as_link,

replace

$html .= '<form action="/flash_file/' . basename($filepath) . '" method="post" id="flash_link_icon_form" class="flash_link_icon_form' . ( $params['name'] ? '-' . $params['name'] : '' ) . '">' . $endl;

by

 $html .= '<form action="' .  url('flash_file/' . basename($filepath)) .'" method="post" id="flash_link_icon_form" class="flash_link_icon_form' . ( $params['name'] ? '-' . $params['name'] : '' ) . '">' . $endl;
tomsys’s picture

Status: Active » Fixed

tnx, now fixed..

Anonymous’s picture

Status: Fixed » Closed (fixed)