I'm sorry if this is a duplicate...I looked for it.
On line 1551 of flashvideo.module appears:
$result = db_query("SELECT DISTINCT video_index FROM `flashvideo` WHERE nid = %d ORDER BY video_index ASC", $node->nid);
This should be
$result = db_query("SELECT DISTINCT video_index FROM {flashvideo} WHERE nid = %d ORDER BY video_index ASC", $node->nid);
Otherwise it will throw an error on sites that use a table prefix.
Comments
Comment #1
attheshow commentedGood catch. Thanks! Just committed a fix for this to the dev version.