The faq module is ignoring node revisions. The solution is:
- open the faq.module
- search all occurences, where the module select some data from term_node table
- complete the JOIN
Example:
original ... FROM {node} n INNER JOIN {term_node} tn ON n.nid = tn.nid ...
better ... FROM {node} n INNER JOIN {term_node} tn ON n.nid = tn.nid AND n.vid = tn.vid ...
And search for the next occurance of "term_node". Warning! The alias name of the term_node table is different in the last occurance (just t, not tn)!
Comments
Comment #1
stella commentedFixed and will be included in the next release. Thanks!
Cheers,
Stella
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #3
stella commentedMarked #242550 as duplicate of this issue.
Comment #4
stella commentedReleased in faq 6.x-1.6.
Cheers,
Stella