in flashvideo module line number 1633
If they wan't to show all the videos in the node in a playlist fashion... they can say "fids=node"...
please change the f.nid to fv.nid
$result = db_query("SELECT f.fid FROM {flashvideo} fv LEFT JOIN {files} f ON f.fid = fv.fid WHERE {$flashmime} AND (fv.status=%d) AND (f.nid=%d)", FLASHVIDEO_STATUS_CONVERTED, $nid);
following is the corrected one:
$result = db_query("SELECT f.fid FROM {flashvideo} fv LEFT JOIN {files} f ON f.fid = fv.fid WHERE {$flashmime} AND (fv.status=%d) AND (fv.nid=%d)", FLASHVIDEO_STATUS_CONVERTED, $nid);
Regards
balakrishnan.R
Netlinktechnologies
chennai
Comments
Comment #1
attheshow commentedFixed in 1.x-dev version.