Project:Suggested Terms
Version:6.x-1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:needs review

Issue Summary

I don't know enough about this module to understand the warning message I'm getting when I try to edit nodes:

user warning: Unknown column 'nt.tid' in 'on clause' query: SELECT t.name AS name FROM term_data t LEFT JOIN term_node tn ON (t.tid = nt.tid) WHERE t.vid = 6 GROUP BY t.name ORDER BY t.tid desc LIMIT 0, 20 in /home/nowtown0/public_html/carsonnow/sites/all/modules/suggestedterms/suggestedterms.module on line 98.

Comments

#1

Project:Similar By Terms» Suggested Terms
Version:6.x-1.9» 6.x-1.x-dev

suggestedterms != Similar By Terms

I am moving this over to the Suggested Terms Queue.

Thanks
Robert

#2

Status:active» needs review

...ON (t.tid = tn.tid) WHERE...

Needs to be changed to:
...ON (t.tid = nt.tid) WHERE...

On line 83.

#3

Patch work for me.

AttachmentSize
suggestedterms.module.patch 621 bytes