warning: unknown column
kirkcaraway - November 3, 2009 - 06:36
| Project: | Suggested Terms |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Description
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.

#1
suggestedterms != Similar By Terms
I am moving this over to the Suggested Terms Queue.
Thanks
Robert
#2
...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.