View Single Post
  #11  
Old 05-11-2006, 07:47 PM
tgreer tgreer is offline
Junior Member
 
Join Date: Mar 2006
Posts: 19
Default

Thanks for this! I've noticed some errors, mostly stylistic in the templates, but one main one in the main query. You're missing a field after the ORDER BY clause.

I would change:

Code:
ORDER BY $order LIMIT $limit";
to

Code:
ORDER BY g.threadid $order LIMIT $limit";
Also, it seems to display the message, rather than the synopsis. I'm still puzzling that one out.
Reply With Quote