Closed (fixed)
Project:
FFmpeg Converter
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Mar 2009 at 17:04 UTC
Updated:
29 Mar 2009 at 09:00 UTC
When you make a view with "Row style: Node" the template ffmpeg_converter_video.tpl.php isn't used.
When you set the display field to "Image linked to file" and you view the node ffmpeg_converter links the first snapshot to the converted file. But when you display the node through a view it just displays the snapshots linked to the respective image.
Comments
Comment #1
jax commentedIn
function ffmpeg_converter_preprocess_content_field(&$variables) {there is the following:When it is a view you always end up in the
elsepart. If you make it go through the full part it will obey your full view settings.Comment #2
zoo33 commentedCool. I changed the above to not rely on arg() but rather use the actual field settings. Thanks!