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

stella’s picture

Status: Active » Fixed

Fixed and will be included in the next release. Thanks!

Cheers,
Stella

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

stella’s picture

Marked #242550 as duplicate of this issue.

stella’s picture

Released in faq 6.x-1.6.

Cheers,
Stella